| 123456789101112131415161718192021222324 | 'use strict';Object.defineProperty(exports, '__esModule', { value: true });var shared = require('@vue/shared');const escapeStringRegexp = (string = "") => string.replace(/[|\\{}()[\]^$+*?.]/g, "\\$&").replace(/-/g, "\\x2d");const capitalize = (str) => shared.capitalize(str);Object.defineProperty(exports, 'camelize', {  enumerable: true,  get: function () { return shared.camelize; }});Object.defineProperty(exports, 'hyphenate', {  enumerable: true,  get: function () { return shared.hyphenate; }});Object.defineProperty(exports, 'kebabCase', {  enumerable: true,  get: function () { return shared.hyphenate; }});exports.capitalize = capitalize;exports.escapeStringRegexp = escapeStringRegexp;//# sourceMappingURL=strings.js.map
 |