use isArray instead of instanceof
This commit is contained in:
parent
7bfed3fca1
commit
5a719d635a
|
@ -111,7 +111,7 @@ function addLocalVariable(name, value) {
|
||||||
const currentValue = getLocalVariable(name) || 0;
|
const currentValue = getLocalVariable(name) || 0;
|
||||||
try {
|
try {
|
||||||
const parsedValue = JSON.parse(currentValue);
|
const parsedValue = JSON.parse(currentValue);
|
||||||
if (typeof parsedValue == 'object' && parsedValue instanceof Array) {
|
if (Array.isArray(parsedValue)) {
|
||||||
parsedValue.push(value);
|
parsedValue.push(value);
|
||||||
setGlobalVariable(name, JSON.stringify(parsedValue));
|
setGlobalVariable(name, JSON.stringify(parsedValue));
|
||||||
return parsedValue;
|
return parsedValue;
|
||||||
|
@ -139,7 +139,7 @@ function addGlobalVariable(name, value) {
|
||||||
const currentValue = getGlobalVariable(name) || 0;
|
const currentValue = getGlobalVariable(name) || 0;
|
||||||
try {
|
try {
|
||||||
const parsedValue = JSON.parse(currentValue);
|
const parsedValue = JSON.parse(currentValue);
|
||||||
if (typeof parsedValue == 'object' && parsedValue instanceof Array) {
|
if (Array.isArray(parsedValue)) {
|
||||||
parsedValue.push(value);
|
parsedValue.push(value);
|
||||||
setGlobalVariable(name, JSON.stringify(parsedValue));
|
setGlobalVariable(name, JSON.stringify(parsedValue));
|
||||||
return parsedValue;
|
return parsedValue;
|
||||||
|
|
Loading…
Reference in New Issue