Comparing version 0.3.0 to 0.3.1
17
index.js
@@ -146,8 +146,13 @@ /* This Source Code Form is subject to the terms of the Mozilla Public | ||
module.exports = function dbug(name) { | ||
return dbugger(name); | ||
}; | ||
if (global.__dbug__1) { | ||
module.exports = global.__dbug__1; | ||
} else { | ||
module.exports = function dbug(name) { | ||
return dbugger(name); | ||
}; | ||
// woah. this is a private API. don't rely on it. i can blow it up | ||
// any time. kablamo! | ||
module.exports.__log = log; | ||
// woah. this is a private API. don't rely on it. i can blow it up | ||
// any time. kablamo! | ||
module.exports.__log = log; | ||
global.__dbug__1 = module.exports; | ||
} |
{ | ||
"name": "dbug", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "debug improvements", | ||
@@ -5,0 +5,0 @@ "scripts": { |
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
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
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
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
27824
303