repl.txt (394B)
1 2 {{alias}}( value ) 3 Tests if a value is a BigUint64Array. 4 5 Parameters 6 ---------- 7 value: any 8 Value to test. 9 10 Returns 11 ------- 12 bool: boolean 13 Boolean indicating whether value is a BigUint64Array. 14 15 Examples 16 -------- 17 > var bool = {{alias}}( new BigUint64Array( 10 ) ) 18 true 19 > bool = {{alias}}( [] ) 20 false 21 22 See Also 23 -------- 24