index.js 429 B

1234567891011
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.headerCase = void 0;
  4. var tslib_1 = require("tslib");
  5. var capital_case_1 = require("capital-case");
  6. function headerCase(input, options) {
  7. if (options === void 0) { options = {}; }
  8. return capital_case_1.capitalCase(input, tslib_1.__assign({ delimiter: "-" }, options));
  9. }
  10. exports.headerCase = headerCase;
  11. //# sourceMappingURL=index.js.map