1
This commit is contained in:
38
20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/string.js
Normal file
38
20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/string.js
Normal file
@@ -0,0 +1,38 @@
|
||||
'use strict'
|
||||
|
||||
var padEnd = require('./padEnd')
|
||||
var padStart = require('./padStart')
|
||||
var repeat = require('./repeat')
|
||||
var trim = require('./trim')
|
||||
var trimRight = require('./trimRight')
|
||||
var trimLeft = require('./trimLeft')
|
||||
var escape = require('./escape')
|
||||
var unescape = require('./unescape')
|
||||
var camelCase = require('./camelCase')
|
||||
var kebabCase = require('./kebabCase')
|
||||
var startsWith = require('./startsWith')
|
||||
var endsWith = require('./endsWith')
|
||||
var template = require('./template')
|
||||
var toFormatString = require('./toFormatString')
|
||||
var toValueString = require('./toValueString')
|
||||
|
||||
var stringExports = {
|
||||
trim: trim,
|
||||
trimLeft: trimLeft,
|
||||
trimRight: trimRight,
|
||||
escape: escape,
|
||||
unescape: unescape,
|
||||
camelCase: camelCase,
|
||||
kebabCase: kebabCase,
|
||||
repeat: repeat,
|
||||
padStart: padStart,
|
||||
padEnd: padEnd,
|
||||
startsWith: startsWith,
|
||||
endsWith: endsWith,
|
||||
template: template,
|
||||
toFormatString: toFormatString,
|
||||
toString: toValueString,
|
||||
toValueString: toValueString
|
||||
}
|
||||
|
||||
module.exports = stringExports
|
||||
Reference in New Issue
Block a user