array-starts-with

1.1.15 • Public • Published

array-starts-with

MIT License Build Status

NPM status

The same as String.prototype.startsWith but comparing array elements instead of string characters

installation

with npm:

npm i --save array-starts-with

or with yarn:

yarn add array-starts-with

usage

import arrayStartsWith from 'array-starts-with'
// or:
// const arrayStartsWith = require('array-starts-with').default;

const base = ['foo', 'bar', 'baz'];
const start = ['foo', 'bar'];

const result = arrayStartsWith(base, start);

expect(result).to.equal(true);

Dependencies (0)

    Dev Dependencies (21)

    Package Sidebar

    Install

    npm i array-starts-with

    Weekly Downloads

    20

    Version

    1.1.15

    License

    MIT

    Unpacked Size

    3.16 kB

    Total Files

    4

    Last publish

    Collaborators

    • oprogramador