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 (11 loc) 336 B
// https://github.com/leobalter/object-enumerables var $export = require('./_export') , toObject = require('./_to-object'); $export($export.S, 'Object', { enumerableKeys: function enumerableKeys(O){ var T = toObject(O) , properties = []; for(var key in T)properties.push(key); return properties; } });