Bump redux-devtools-instrument

This commit is contained in:
Zalmoxisus 2019-01-26 00:03:25 +02:00
parent 22dc9f259c
commit eef342fb64
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "redux-devtools-instrument",
"version": "1.9.5",
"version": "1.9.6",
"description": "Redux DevTools instrumentation",
"main": "lib/instrument.js",
"scripts": {

View File

@ -27,7 +27,7 @@ const isChrome = (
));
const isChromeOrNode = (
isChrome || (typeof process !== 'undefined' && process.release.name === 'node')
isChrome || (typeof process !== 'undefined' && process.release && process.release.name === 'node')
);
/**