array-starts-with

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

Usage no npm install needed!

<script type="module">
  import arrayStartsWith from 'https://cdn.skypack.dev/array-starts-with';
</script>

README

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);