UNPKG

json-from-template

Version:

Generate random JSON(plain old object) from the given template

13 lines (8 loc) 245 B
'use strict'; var handlers = null; exports.injectHandlers = function (_handlers) { handlers = _handlers; }; exports.compile = function (key, template, helpers, data, path) { return handlers.handle(key, template, helpers, data, path); };