index.js 323 B

12345678
  1. import { __assign } from "tslib";
  2. import { noCase } from "no-case";
  3. import { upperCase } from "upper-case";
  4. export function constantCase(input, options) {
  5. if (options === void 0) { options = {}; }
  6. return noCase(input, __assign({ delimiter: "_", transform: upperCase }, options));
  7. }
  8. //# sourceMappingURL=index.js.map