addon-tools-raub
Advanced tools
Comparing version 7.2.0 to 7.2.1
{ | ||
"author": "Luis Blanco <luisblanco1337@gmail.com>", | ||
"name": "addon-tools-raub", | ||
"version": "7.2.0", | ||
"version": "7.2.1", | ||
"description": "Helpers for Node.js addons and dependency packages", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -13,6 +13,4 @@ 'use strict'; | ||
const downloadRecursive = async (url, count = 1) => { | ||
url = url.toLowerCase(); | ||
const stream = new WritableBuffer(); | ||
const proto = protocols[url.match(/^https?/)[0]]; | ||
const proto = protocols[url.match(/^https?/i)[0].toLowerCase()]; | ||
@@ -19,0 +17,0 @@ const response = await new Promise((res, rej) => { |
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
66876
621