Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/toFormatString.js

13 lines
270 B
JavaScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
var template = require('./template')
/**
* 字符串格式化占位符
* @param { string } str
* @param { object | any[] } obj
*/
function toFormatString (str, obj) {
return template(str, obj,{ tmplRE: /\{([.\w[\]\s]+)\}/g })
}
module.exports = toFormatString