index.js 494 B

123456789101112
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.constantCase = void 0;
  4. var tslib_1 = require("tslib");
  5. var no_case_1 = require("no-case");
  6. var upper_case_1 = require("upper-case");
  7. function constantCase(input, options) {
  8. if (options === void 0) { options = {}; }
  9. return no_case_1.noCase(input, tslib_1.__assign({ delimiter: "_", transform: upper_case_1.upperCase }, options));
  10. }
  11. exports.constantCase = constantCase;
  12. //# sourceMappingURL=index.js.map