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

15 lines (11 loc) 285 B
'use strict'; var value = require('./valid-value') , propertyIsEnumerable = Object.prototype.propertyIsEnumerable; module.exports = function (obj) { var i; value(obj); for (i in obj) { //jslint: ignore if (propertyIsEnumerable.call(obj, i)) return false; } return true; };