"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var to_string_1 = require("./to-string"); var lowerFirst = function (value) { var str = to_string_1.default(value); return str.charAt(0).toLowerCase() + str.substring(1); }; exports.default = lowerFirst; //# sourceMappingURL=lower-first.js.map