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.
24 lines
754 B
24 lines
754 B
'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
|
|
|