UNPKG

di-shan-utils

Version:

JavaScript 函数库、工具类

13 lines (10 loc) 270 B
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