mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-22 02:58:36 +00:00
7 lines
No EOL
256 B
JavaScript
Vendored
7 lines
No EOL
256 B
JavaScript
Vendored
import { __assign } from "tslib";
|
|
import { noCase } from "no-case";
|
|
export function dotCase(input, options) {
|
|
if (options === void 0) { options = {}; }
|
|
return noCase(input, __assign({ delimiter: "." }, options));
|
|
}
|
|
//# sourceMappingURL=index.js.map
|