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

yog2-kernel

Package Overview
Dependencies
Maintainers
2
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yog2-kernel - npm Package Compare versions

Comparing version 1.4.0 to 1.4.1

2

package.json
{
"name": "yog2-kernel",
"version": "1.4.0",
"version": "1.4.1",
"description": "yog2 kernel",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -14,2 +14,3 @@ 'use strict';

'delete': true,
'del': true,
'copy': true,

@@ -216,4 +217,8 @@ 'head': true,

);
var verbAction = action[req.method.toLowerCase()];
var method = req.method.toLowerCase();
var verbAction = action[method];
// use del as delete alias
if (method === 'delete' && !verbAction) {
verbAction = action.del;
}
debuglog('start action excution [%s] with method [%s]', action.__name__, req.method);

@@ -220,0 +225,0 @@ if (verbAction && typeof verbAction === 'function') {

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