New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

serialized-query

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serialized-query - npm Package Compare versions

Comparing version 0.2.5 to 0.2.6

2

lib/serialized-query.d.ts

@@ -31,4 +31,4 @@ import { ISnapShot } from 'typed-conversions';

handleSnapshot(fn: (snap: ISnapShot) => any): this;
execute(db?: ISimplifiedDBAdaptor): Promise<any>;
execute(): Promise<any>;
private validateNoKey(caller, key);
}

@@ -104,8 +104,5 @@ "use strict";

}
execute(db) {
execute() {
return __awaiter(this, void 0, void 0, function* () {
if (!db) {
db = this._db;
}
const snap = yield this.deserialize(db).once('value');
const snap = yield this.deserialize().once('value');
return this._handleSnapshot

@@ -112,0 +109,0 @@ ? this._handleSnapshot(snap)

{
"name": "serialized-query",
"version": "0.2.5",
"version": "0.2.6",
"description": "A simple Typescript class to serialize Firebase queries",

@@ -5,0 +5,0 @@ "license": "MIT",

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