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

util

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

util - npm Package Compare versions

Comparing version 0.10.0 to 0.10.1

5

package.json

@@ -11,3 +11,3 @@ {

],
"version": "0.10.0",
"version": "0.10.1",
"homepage": "https://github.com/defunctzombie/node-util",

@@ -22,2 +22,5 @@ "repository": {

},
"dependencies": {
"inherits": "2.0.1"
},
"devDependencies": {

@@ -24,0 +27,0 @@ "zuul": "~1.0.3"

12

util.js

@@ -563,13 +563,3 @@ // Copyright Joyent, Inc. and other Node contributors.

*/
exports.inherits = function(ctor, superCtor) {
ctor.super_ = superCtor;
ctor.prototype = Object.create(superCtor.prototype, {
constructor: {
value: ctor,
enumerable: false,
writable: true,
configurable: true
}
});
};
exports.inherits = require('inherits');

@@ -576,0 +566,0 @@ exports._extend = function(origin, add) {

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