You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
754 B
25 lines
754 B
1 month ago
|
'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
|