UNPKG

charlike

Version:

Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options

13 lines (8 loc) 216 B
'use strict'; var Set = require('../../'); module.exports = function (t, a) { var content = ['raz', 2, true], set = new Set(content); a(t.call(set), 'raz'); set = new Set(); a(t.call(set), undefined); };