1.0.0 • Published 8 months ago

null-array v1.0.0

Weekly downloads
-
License
-
Repository
github
Last release
8 months ago

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'