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

12 lines (10 loc) 203 B
var tape = require('tape') var gen = require('./') tape('valid', function(t) { t.same(gen('a', 'b'), 'a.b') t.end() }) tape('invalid', function(t) { t.same(gen('a', '-b'), 'a["-b"]') t.end() })