Socket
Socket
Sign inDemoInstall

resource-schema

Package Overview
Dependencies
Maintainers
6
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

resource-schema - npm Package Compare versions

Comparing version 2.0.0 to 2.1.0

.idea/.name

6

lib/index.js

@@ -240,3 +240,3 @@ // Generated by CoffeeScript 1.10.0

}
skip = req.query.$skip;
skip = parseInt(req.query.$skip, 10);
if (skip) {

@@ -797,5 +797,5 @@ modelQuery.skip(skip);

if (query.$limit != null) {
return query.$limit;
return parseInt(query.$limit, 10);
} else if (this.options.limit != null) {
return this.options.limit;
return parseInt(this.options.limit, 10);
} else {

@@ -802,0 +802,0 @@ return 1000;

{
"name": "resource-schema",
"version": "2.0.0",
"version": "2.1.0",
"description": "Define schemas for RESTful resources from mongoose models, and generate middleware to GET, POST, PUT, and DELETE to those resources.",

@@ -5,0 +5,0 @@ "author": "Good Eggs <open-source@goodeggs.com>",

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