文件名称:backtick:基于模板文字的模板引擎
文件大小:34KB
文件格式:ZIP
更新时间:2024-05-21 09:24:51
template template-engine template-literal JavaScript
反t 基于模板文字的模板引擎。 安装 $ npm install backtick 用法 // template.txt Fifteen is ${a + b} and not ${2 * a + b}. or `Fifteen is ${a + b} and not ${2 * a + b}.` // example const backtick = require ( 'backtick' ) ; backtick ( `template.txt` , 'dist' , { a : 5 , b : 10 } ) ; // dist/template.txt Fifteen is 15 and not 20. 执照 麻省理工学院:copyright:
【文件预览】:
backtick-master
----.travis.yml(177B)
----renovate.json(81B)
----package.json(1KB)
----test()
--------fixture.js(925B)
--------fail.js(321B)
--------fixtures()
----LICENSE(1KB)
----package-lock.json(104KB)
----.gitignore(53B)
----lib()
--------index.js(1KB)
----README.md(688B)
----.editorconfig(188B)