CoastalCommitsPastes/server/node_modules/cldrjs/dist/.build/util/object/keys.js

18 lines
200 B
JavaScript
Raw Normal View History

2022-03-06 16:46:59 -08:00
var objectKeys = function( object ) {
var i,
result = [];
if ( Object.keys ) {
return Object.keys( object );
}
for ( i in object ) {
result.push( i );
}
return result;
};