tiny-script-loader
Advanced tools
Comparing version 1.0.0 to 1.1.0
@@ -10,5 +10,5 @@ module.exports = function loadScript (src, cb) { | ||
el.src = src | ||
el.onload = function () { cb(null) } | ||
el.onload = function () { cb() } | ||
el.onerror = function () { cb(new Error('failed to load: ' + src)) } | ||
firstScript.parentNode.insertBefore(el, firstScript) | ||
} |
{ | ||
"name": "tiny-script-loader", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "Tiny script loader", | ||
@@ -5,0 +5,0 @@ "scripts": { |
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
4885