@visulima/string
Version:
Functions for manipulating strings.
12 lines (8 loc) • 501 B
JavaScript
;
const LRUCache = require('../packem_shared/LRUCache-Crb-m7cw.cjs');
const case_kebabCase = require('./kebab-case.cjs');
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
const defaultCacheStore = new LRUCache(1e3);
const dotCase = /* @__PURE__ */ __name((value, options) => case_kebabCase.kebabCase(value, { cacheStore: defaultCacheStore, ...options, joiner: "." }), "dotCase");
module.exports = dotCase;