@randajan/jet-core
Advanced tools
Comparing version 3.0.3 to 3.0.4
@@ -546,7 +546,11 @@ var __defProp = Object.defineProperty; | ||
}, | ||
run: (any, ...args) => defs_default.forEach(any, (f) => { | ||
if (defs_default.isRunnable(f)) { | ||
return f(...args); | ||
run: (any, ...args) => { | ||
if (defs_default.isRunnable(any)) { | ||
return any(...args); | ||
} | ||
}), | ||
if (!defs_default.isMapable(any)) { | ||
return void 0; | ||
} | ||
return defs_default.forEach(any, (f) => defs_default.isRunnable(f) ? f(...args) : void 0, true); | ||
}, | ||
...pile_exports, | ||
@@ -553,0 +557,0 @@ define: new Plex_default(define_default, { to: toDefine }) |
{ | ||
"name": "@randajan/jet-core", | ||
"version": "3.0.3", | ||
"version": "3.0.4", | ||
"description": "Ecosystem of types and related usefull tools.", | ||
@@ -5,0 +5,0 @@ "repository": "randajan/jet-core", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
117884
1114