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

16 lines (12 loc) 229 B
'use strict'; module.exports = function (obj) { if (typeof obj !== 'object') { throw new TypeError('Expected an object'); } var ret = {}; for (var key in obj) { var val = obj[key]; ret[val] = key; } return ret; };