0.0.2 • Published 9 years ago

@nathanfaucett/template v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

Template

template creator for the browser and node.js

var template = require("@nathanfaucett/template");


var templateFn = template("<p><%= text %></p>");


templateFn({
    text: "Hello World!"
}) === "<p>Hello World!</p>");