mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-04 04:40:05 +02:00
add some packages
This commit is contained in:
19
node_modules/for-own/index.js
generated
vendored
Normal file
19
node_modules/for-own/index.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
/*!
|
||||
* 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);
|
||||
}
|
||||
});
|
||||
};
|
Reference in New Issue
Block a user