upper-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 upperFirst = function (value) {
  5. var str = to_string_1.default(value);
  6. return str.charAt(0).toUpperCase() + str.substring(1);
  7. };
  8. exports.default = upperFirst;
  9. //# sourceMappingURL=upper-first.js.map