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

11 lines (9 loc) 235 B
'use strict'; module.exports = function (t, a) { a(t(2), true, "Number"); a(t(-2), false, "Negative"); a(t(2.34), false, "Float"); a(t('23'), false, "Not numeric"); a(t(NaN), false, "NaN"); a(t(Infinity), false, "Infinity"); };