Huge News!Announcing our $40M Series B led by Abstract Ventures.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.4.2 to 0.4.3

6

lib/serialized-query.d.ts

@@ -28,3 +28,9 @@ import { rtdb } from "firebase-api-surface";

setPath(path: string | LazyPath): this;
/**
* hashCode
*
* get a unique numeric hashcode for this query
*/
hashCode(): number;
stringHashCode(): string;
limitToFirst(num: number): this;

@@ -31,0 +37,0 @@ limitToLast(num: number): this;

@@ -34,2 +34,7 @@ "use strict";

}
/**
* hashCode
*
* get a unique numeric hashcode for this query
*/
hashCode() {

@@ -49,2 +54,5 @@ const identity = this.toJSON();

}
stringHashCode() {
return String(this.hashCode);
}
limitToFirst(num) {

@@ -51,0 +59,0 @@ this._limitToFirst = num;

2

package.json
{
"name": "serialized-query",
"version": "0.4.2",
"version": "0.4.3",
"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