New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

irrelon-appcore

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

irrelon-appcore - npm Package Compare versions

Comparing version 1.0.17 to 1.0.18

test/browser/index.js

14

index.js

@@ -436,6 +436,4 @@ /**

nextItem,
valueArr,
i;
valueArr;
i = -1;
valueArr = [];

@@ -446,5 +444,4 @@

i++;
definition = arr.shift();
definition = arr[i];
if (!definition) {

@@ -459,6 +456,5 @@ return callback(false, valueArr);

// and store the return value in the valueArr
valueArr[i] = definition.apply(self, argsArr);
valueArr.push(definition.apply(self, argsArr));
// Check for more items in the array
if (i < arr.length) {
if (arr.length) {
// Process the next item

@@ -469,3 +465,3 @@ return nextItem();

// All processing finished, callback now
return callback(false, valueArr);
callback(false, valueArr);
});

@@ -472,0 +468,0 @@ };

{
"name": "irrelon-appcore",
"version": "1.0.17",
"version": "1.0.18",
"description": "A very lightweight application dependency manager for maintaining clean modularised code without polluting the global namespace.",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc