mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-02 00:49:59 +08:00
7 lines
261 B
JavaScript
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
|