@polkadot/util
Advanced tools
Comparing version 0.14.10 to 0.14.11
@@ -26,6 +26,6 @@ 'use strict'; | ||
try { | ||
// $FlowFixMe this can fail (undefined/null) - hence the try/catch | ||
var debugList = process.env.DEBUG.split(','); | ||
var isTest = process.env.NODE_ENV === 'test'; | ||
var debugList = (process.env.DEBUG || '').split(','); | ||
isDebug = !!debugList.find(function (entry) { | ||
isDebug = isTest || !!debugList.find(function (entry) { | ||
return _type.indexOf(entry) === 0; | ||
@@ -32,0 +32,0 @@ }); |
{ | ||
"name": "@polkadot/util", | ||
"version": "0.14.10", | ||
"version": "0.14.11", | ||
"description": "A collection of useful utilities for @polkadot", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
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
154902