Added meshcore minification support.

This commit is contained in:
Ylian Saint-Hilaire
2018-12-29 15:24:33 -08:00
parent 4d307ca159
commit 1551f74637
47 changed files with 233 additions and 1989 deletions

View File

@@ -1522,7 +1522,7 @@ function parseUrlArguments(url) {
// Remove a element from a array
function removeItemFromArray(array, element) {
const index = array.indexOf(element);
var index = array.indexOf(element);
if (index !== -1) { array.splice(index, 1); }
}