inherits-ex
Advanced tools
Comparing version 1.1.6 to 1.1.7
@@ -1,2 +0,2 @@ | ||
exports = module.exports = require('./lib/inherits') | ||
var exports = module.exports = require('./lib/inherits') | ||
exports.directly = require('./lib/inheritsDirectly') | ||
@@ -3,0 +3,0 @@ exports.is = require('./lib/isInheritedFrom') |
@@ -5,3 +5,3 @@ module.exports = function(aFunc, istanbul) { | ||
if (!result) { | ||
if (!istanbul) try {istanbul = require('istanbul');} catch(e){} | ||
if (!istanbul) try {istanbul = eval("require('istanbul')");} catch(e){} | ||
if (istanbul) | ||
@@ -8,0 +8,0 @@ result = /^function\s*\S*\s*\((.|[\n\r\u2028\u2029])*\)\s*{__cov_[\d\w_]+\.f\[.*\]\+\+;}$/.test(vStr); |
@@ -5,3 +5,3 @@ { | ||
"homepage": "https://github.com/snowyu/inherits-ex.js", | ||
"version": "1.1.6", | ||
"version": "1.1.7", | ||
"author": { | ||
@@ -8,0 +8,0 @@ "name": "Riceball LEE", |
@@ -5,3 +5,3 @@ module.exports = function(aFunc, istanbul) { | ||
if (!result) { | ||
if (!istanbul) try {istanbul = require('istanbul');} catch(e){} | ||
if (!istanbul) try {istanbul = eval("require('istanbul')");} catch(e){} | ||
if (istanbul) | ||
@@ -8,0 +8,0 @@ result = /^function\s*\S*\s*\((.|[\n\r\u2028\u2029])*\)\s*{__cov_[\d\w_]+\.f\[.*\]\+\+;}$/.test(vStr); |
80643