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

kp-stock

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kp-stock - npm Package Compare versions

Comparing version 5.0.13 to 5.0.14

42

kp.js

@@ -105,2 +105,44 @@ /**

};
mths.public.base = function() {
var mth = false,
args = [];
for(var i = 0; i < arguments.length; i++) {
if(i == 0) {
mth = arguments[i];
}
else {
args.push(arguments[i]);
}
}
if(mth && parent.public[mth]) {
parent.public[mth].apply(this, args);
}
else if(parent.public.base) {
parent.public.base.apply(this, arguments);
}
};
mths.static.base = function() {
var mth = false,
args = [];
for(var i = 0; i < arguments.length; i++) {
if(i == 0) {
mth = arguments[i];
}
else {
args.push(arguments[i]);
}
}
if(mth && parent.static[mth]) {
parent.static[mth].apply(this, args);
}
else if(parent.static.base) {
parent.static.base.apply(this, arguments);
}
};
}

@@ -107,0 +149,0 @@ else if(typeof mths.extend === "function") {

2

package.json
{
"name": "kp-stock",
"version": "5.0.13",
"version": "5.0.14",
"author": "Kris Papercut <kearis666@gmail.com>",

@@ -5,0 +5,0 @@ "license": "ISC",

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