alan-js-runtime
Advanced tools
Comparing version 0.1.24 to 0.1.25
@@ -601,7 +601,7 @@ require('cross-fetch/polyfill') | ||
indarrf: (arr, val) => { | ||
const ind = arr.indexOf(val) | ||
const ind = BigInt(arr.indexOf(val)) | ||
return ind > -1 ? [ true, ind, ] : [ false, 'element not found', ] | ||
}, | ||
indarrv: (arr, val) => { | ||
const ind = arr.indexOf(val) | ||
const ind = BigInt(arr.indexOf(val)) | ||
return ind > -1 ? [ true, ind, ] : [ false, 'element not found', ] | ||
@@ -608,0 +608,0 @@ }, |
{ | ||
"name": "alan-js-runtime", | ||
"version": "0.1.24", | ||
"version": "0.1.25", | ||
"description": "The runtime component for alan-js. Separately licensed from the compiler.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
41070