dreambase-library
Advanced tools
Comparing version 1.0.5 to 1.0.6
@@ -9,2 +9,3 @@ import { TypeDefSet } from "./TypeDefSet.js"; | ||
export declare function readBlob(blob: Blob): Promise<string>; | ||
export declare function readBlobBinary(blob: Blob): Promise<ArrayBuffer>; | ||
//# sourceMappingURL=Bison.d.ts.map |
@@ -54,3 +54,3 @@ import { BisonBinaryTypes } from "./BisonBinaryTypes.js"; | ||
} | ||
function readBlobBinary(blob) { | ||
export function readBlobBinary(blob) { | ||
return new Promise((resolve, reject) => { | ||
@@ -57,0 +57,0 @@ const reader = new FileReader(); |
@@ -8,5 +8,8 @@ const { toString: toStr } = {}; | ||
let dollarKeys = null; | ||
for (let i = 0, l = keys.length; i < l; ++i) | ||
if (keys[i][0] === "$") | ||
dollarKeys = (dollarKeys || []).concat(keys[i]); | ||
for (let i = 0, l = keys.length; i < l; ++i) { | ||
if (keys[i][0] === "$") { | ||
dollarKeys = dollarKeys || []; | ||
dollarKeys.push(keys[i]); | ||
} | ||
} | ||
if (!dollarKeys) | ||
@@ -13,0 +16,0 @@ return value; |
{ | ||
"name": "dreambase-library", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "Library of dreambase-related code for use in other libraries.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
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
40277
74
925