lower-first.js 328 B

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