Clyng57 / null-array

A module for creating a NullArray that only has index and length properties.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NullArray

Create a null prototype Array. The created array will have no methods. JavaScript Style Guide


Table of Contents


Install

npm i null-array

Usage

import NullArray from 'null-array'

const nullArray = new NullArray()
nullArray.length // returns 0
nullArray.push // returns undefined
import NullArray from 'null-array'

const nullArray = new NullArray('a', 'b', 'c')
nullArray.length // returns 3
nullArray.push // returns undefined
nullArray[-1] // returns 'c'

About

A module for creating a NullArray that only has index and length properties.

License:MIT License


Languages

Language:JavaScript 100.0%