tplv:现代的Nano(〜170字节)字符串模板库基于ES6模板字符串语法 源码
TPLV Nano(〜170字节),基于ES6 String模板语法的高性能字符串模板库。 安装 $ npm i --save tplv 用法 render模板字符串 import { render } from 'tplv' ; const template = '${ name }, ${value}(${percent} | Top ${array[2]})' ; const data = { name : 'Hangzhou' , value : 1200 , percent : '13%' , array : [ 1 , 2 , 3 , 4 ] } ; render
用户评论