/** * This function is like * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) * except that it includes inherited enumerable properties. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the array of property names. */functionnativeKeysIn(object){varresult=[];if(object!=null){for(varkeyinObject(object)){result.push(key);}}returnresult;}module.exports=nativeKeysIn;