Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/toFormatString.js
2024-12-05 09:33:18 +08:00

13 lines
270 B
JavaScript

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