Bump to v4.17.11.

This commit is contained in:
John-David Dalton
2018-09-11 22:12:11 -07:00
parent c4b20a6ea7
commit 3e273e915d
11 changed files with 171 additions and 181 deletions

View File

@@ -7,9 +7,11 @@
* @returns {*} Returns the property value.
*/
function safeGet(object, key) {
return key == '__proto__'
? undefined
: object[key];
if (key == '__proto__') {
return;
}
return object[key];
}
module.exports = safeGet;