JSPM

@bemoje/is-array-like

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q27176F
  • License MIT

Determine if a value is array-like. Fork of https://github.com/gearcase/is-array-like.

Package Exports

  • @bemoje/is-array-like

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@bemoje/is-array-like) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@bemoje/is-array-like

Determine if a value is array-like. Fork of https://github.com/gearcase/is-array-like.

Version

NPM version

Travis CI

dependencies

Dependencies

dependencies

Stats

NPM downloads Forks

Buy Me A Beer donate button PayPal donate button

Installation

npm install @bemoje/is-array-like
npm install --save @bemoje/is-array-like
npm install --save-dev @bemoje/is-array-like

Usage

import isArrayLike from '@bemoje/is-array-like'

isArrayLike([])
//=> true

isArrayLike(new Uint16Array())
//=> true

const fn = () => isArrayLike(arguments)

fn()
//=> true

Tests

Uses Jest to test module functionality. Run tests to get coverage details.

npm run test

API

Table of Contents

isArrayLike

Determine if a value is array-like. Fork of https://github.com/gearcase/is-array-like.

Parameters
  • value any The value

Returns boolean