Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dreambase-library

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dreambase-library - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

dist/typeson-simplified/BisonWebBlobBuilder.d.ts

1

dist/typeson-simplified/Bison.d.ts

@@ -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

2

dist/typeson-simplified/Bison.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc