文件名称:format:极简js模版填充引擎
文件大小:17KB
文件格式:ZIP
更新时间:2024-08-02 09:31:00
JavaScript
极简JS模版填充引擎 format 极简js模版填充引擎,30行代码,支持数组填充、对象填充和多参填充等功能。 另有一款功能更复杂的极简模版引擎: 源码: (function($, undefined) { //测试浏览器是否支持正则表达式预编译 var baseReg = /\{([\w\.]+)\}/g, numReg = /^\d+$/, //预编译核心的正则表达式,以提高正则匹配效率 formatReg = baseReg.compile ? baseReg.compile(baseReg.source, "g") || baseReg : baseReg, //其他工具函数 toString = Object.prototype.toString, slice = Array.prototype.slice; //对外接口 $.format = functio
【文件预览】:
format-master
----tests.html(2KB)
----LICENSE(34KB)
----format.js(2KB)
----.gitignore(3KB)
----README.md(3KB)
----.gitattributes(483B)