line_push/node_modules/param-case/dist.es2015/index.js
2022-07-17 13:16:16 +08:00

7 lines
261 B
JavaScript

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