inherits-ex
Advanced tools
Comparing version 1.5.1 to 1.5.2
@@ -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; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
218541
5283