Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "assert/is-bigint64array/docs/types/index.d"

Index

Functions

Functions

Export assignment isBigInt64Array

  • isBigInt64Array(value: any): boolean
  • Tests if a value is a BigInt64Array.

    Parameters

    • value: any

      value to test

    Returns boolean

    boolean indicating whether value is a BigInt64Array

    Example

    var bool = isBigInt64Array( new BigInt64Array( 10 ) );
    // returns true

    Example

    var bool = isBigInt64Array( [] );
    // returns false