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.6 to 0.2.7

1

lib/serialized-query.d.ts

@@ -20,2 +20,3 @@ import { ISnapShot } from 'typed-conversions';

constructor(path: string | LazyPath);
readonly path: string | LazyPath;
limitToFirst(num: number): this;

@@ -22,0 +23,0 @@ limitToLast(num: number): this;

6

lib/serialized-query.js

@@ -21,5 +21,7 @@ "use strict";

static path(path) {
const q = new SerializedQuery(path);
return q;
return new SerializedQuery(path);
}
get path() {
return this._path;
}
limitToFirst(num) {

@@ -26,0 +28,0 @@ this._limitToFirst = num;

{
"name": "serialized-query",
"version": "0.2.6",
"version": "0.2.7",
"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