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

crude

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crude - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

14

entity.js

@@ -22,9 +22,9 @@ /**

// Create primitive middlewares
midd.make(this, 'create', this._create);
midd.make(this, 'read', this._read);
midd.make(this, 'readOne', this._readOne);
midd.make(this, 'readLimit', this._readLimit);
midd.make(this, 'update', this._update);
midd.make(this, 'delete', this._delete );
midd.make(this, 'count', this._count);
midd.make(this, 'create', this._create.bind(this));
midd.make(this, 'read', this._read.bind(this));
midd.make(this, 'readOne', this._readOne.bind(this));
midd.make(this, 'readLimit', this._readLimit.bind(this));
midd.make(this, 'update', this._update.bind(this));
midd.make(this, 'delete', this._delete.bind(this));
midd.make(this, 'count', this._count.bind(this));
};

@@ -31,0 +31,0 @@

{
"name": "crude",
"description": "Seamless CRUD control operations for node.",
"version": "0.0.5",
"version": "0.0.6",
"homepage": "https://github.com/talksession/node-crude",

@@ -6,0 +6,0 @@ "author": {

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