firebase-dynamic-links
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -44,3 +44,9 @@ "use strict"; | ||
const req = https_1.request(options, (res) => { | ||
res.on('data', (d) => { | ||
const buffers = []; | ||
res | ||
.on('data', (chunk) => { | ||
buffers.push(chunk); | ||
}) | ||
.on('end', () => { | ||
const d = Buffer.concat(buffers).toString(); | ||
const resBody = JSON.parse(d); | ||
@@ -47,0 +53,0 @@ if (res.statusCode === 200) { |
{ | ||
"name": "firebase-dynamic-links", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "unofficial package to create firebase dynamic links", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
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
13813
234