Files
est-frame/node_modules/param-case/dist.es2015/index.js
2025-10-22 05:38:27 +00:00

7 lines
261 B
JavaScript
Executable File

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