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

inherits-ex

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

inherits-ex - npm Package Compare versions

Comparing version 1.5.1 to 1.5.2

12

lib/index.js

@@ -1,7 +0,7 @@

var exports = module.exports = require('./src/inherits')
exports.directly = require('./src/inheritsDirectly')
exports.is = require('./src/isInheritedFrom')
exports.mixin = require('./src/mixin')
exports.isMixin = require('./src/isMixinedFrom')
exports.object = require('./src/inheritsObject')
var exports = module.exports = require('./inherits')
exports.directly = require('./inheritsDirectly')
exports.is = require('./isInheritedFrom')
exports.mixin = require('./mixin')
exports.isMixin = require('./isMixinedFrom')
exports.object = require('./inheritsObject')

@@ -5,3 +5,3 @@ {

"homepage": "https://github.com/snowyu/inherits-ex.js",
"version": "1.5.1",
"version": "1.5.2",
"author": {

@@ -63,3 +63,3 @@ "name": "Riceball LEE",

"doc.md": "typedoc --plugin typedoc-plugin-markdown --out docs ./src",
"release": "npx standard-version",
"release": "npm run build && npx standard-version",
"release.alpha": "npx standard-version --prerelease alpha",

@@ -66,0 +66,0 @@ "test": "mocha"

@@ -1,7 +0,9 @@

declare const _exports: any;
declare function _exports(ctor: Function, superCtors: Function | Function[], staticInherit: any): boolean;
declare namespace _exports {
const directly: (ctor: Function, superCtor: Function, staticInherit?: boolean) => void;
const is: (ctor: Function, superCtor: string | Function, throwError: any) => boolean | Function;
const mixin: typeof import("./mixin");
const isMixin: (ctor: Function, superCtor: string | Function) => boolean;
const object: typeof import("./inheritsObject");
}
export = _exports;
export const directly: any;
export const is: any;
export const mixin: any;
export const isMixin: any;
export const object: any;
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