We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26f03e1 commit 013894fCopy full SHA for 013894f
web/js/locking.js
@@ -5,6 +5,7 @@ import { app } from "../../../scripts/app.js";
5
const LOCKED = Symbol();
6
7
function lockArray(arr, isLocked) {
8
+ if (!Array.isArray(arr)) return; // Prevent crash on es6
9
const v = [];
10
11
for (let i = 0; i < 2; i++) {
0 commit comments