diff options
Diffstat (limited to 'node_modules/for-own/index.js')
-rw-r--r-- | node_modules/for-own/index.js | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/node_modules/for-own/index.js b/node_modules/for-own/index.js deleted file mode 100644 index 74e2d75..0000000 --- a/node_modules/for-own/index.js +++ /dev/null @@ -1,19 +0,0 @@ -/*! - * for-own <https://github.com/jonschlinkert/for-own> - * - * Copyright (c) 2014-2017, Jon Schlinkert. - * Released under the MIT License. - */ - -'use strict'; - -var forIn = require('for-in'); -var hasOwn = Object.prototype.hasOwnProperty; - -module.exports = function forOwn(obj, fn, thisArg) { - forIn(obj, function(val, key) { - if (hasOwn.call(obj, key)) { - return fn.call(thisArg, obj[key], key, obj); - } - }); -}; |