toFormatString.js 270 B

123456789101112
  1. var template = require('./template')
  2. /**
  3. * 字符串格式化占位符
  4. * @param { string } str
  5. * @param { object | any[] } obj
  6. */
  7. function toFormatString (str, obj) {
  8. return template(str, obj,{ tmplRE: /\{([.\w[\]\s]+)\}/g })
  9. }
  10. module.exports = toFormatString