mirror of
https://github.com/Doodle3D/Doodle3D-API
synced 2024-12-23 14:13:47 +01:00
14 lines
306 B
JavaScript
14 lines
306 B
JavaScript
/* */
|
|
var $ = require("./$");
|
|
module.exports = function(it) {
|
|
var keys = $.getKeys(it),
|
|
getDesc = $.getDesc,
|
|
getSymbols = $.getSymbols;
|
|
if (getSymbols)
|
|
$.each.call(getSymbols(it), function(key) {
|
|
if (getDesc(it, key).enumerable)
|
|
keys.push(key);
|
|
});
|
|
return keys;
|
|
};
|