New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

array-foreach

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

array-foreach - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+0
-6
build/array-foreach.js

@@ -20,8 +20,2 @@ (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.forEach = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw (f.code="MODULE_NOT_FOUND", f)}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(_dereq_,module,exports){

}
if (typeof ary === 'undefined' || ary === null) {
throw new TypeError();
}
if (typeof callback !== 'function') {
throw new TypeError();
}
for (var i = 0; i < ary.length; i+=1) {

@@ -28,0 +22,0 @@ callback.call(thisArg, ary[i], i, ary);

@@ -19,8 +19,2 @@ /**

}
if (typeof ary === 'undefined' || ary === null) {
throw new TypeError();
}
if (typeof callback !== 'function') {
throw new TypeError();
}
for (var i = 0; i < ary.length; i+=1) {

@@ -27,0 +21,0 @@ callback.call(thisArg, ary[i], i, ary);

+3
-1
{
"name": "array-foreach",
"description": "Array#forEach ponyfill for older browsers",
"version": "1.0.0",
"version": "1.0.1",
"author": {

@@ -12,2 +12,3 @@ "name": "Takuto Wada",

"devDependencies": {
"blanket": "^1.1.6",
"jshint": "^2.6.3",

@@ -49,2 +50,3 @@ "mocha": "^2.1.0"

"lint": "jshint index.js",
"cover": "mocha --require ./coverage --reporter html-cov > coverage.html",
"test": "npm run lint && mocha"

@@ -51,0 +53,0 @@ },