describe('stp', function() { it('compile', function() { var fn = stp("hello ${name}"); assert.equal(typeof fn, 'function'); var rs = fn({ name: "word" }); assert.equal(rs, 'hello word'); }); it('parse', function() { var rs = stp("hello ${name}", { name: "word" }); assert.equal(rs, 'hello word'); }); });
stp
0.0.4 • Public • PublishedPackage Sidebar
Install
npm i stp
Weekly Downloads
1,992
Version
0.0.4
License
MIT