selfcarebot/node_modules/header-case/dist.es2015/index.js
2023-03-30 06:02:54 +00:00

7 lines
No EOL
274 B
JavaScript

import { __assign } from "tslib";
import { capitalCase } from "capital-case";
export function headerCase(input, options) {
if (options === void 0) { options = {}; }
return capitalCase(input, __assign({ delimiter: "-" }, options));
}
//# sourceMappingURL=index.js.map