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

protos.js

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

protos.js - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

2

package.json
{
"name": "protos.js",
"version": "1.0.3",
"version": "1.0.4",
"description": "String and Array prototypes for a more easy life",

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

@@ -19,2 +19,10 @@ /*

Object.prototype.save = function(filename, cb) {
if (cb) {
fs.writeFile(filename, JSON.stringify(this, null, 2), cb);
} else {
fs.writeFileSync(filename, JSON.stringify(this, null, 2));
}
}
Object.prototype.dir = function() {

@@ -21,0 +29,0 @@ console.dir(this);

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