array-has

Array#includes with support for regex

Usage no npm install needed!

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

README

array-has Circle CI

Array#includes with support for regular expressions.

Installation

$ npm install array-has --save

Usage

const has = require('array-has');

has([0, 1, 2], 2).should.equal(true);
has(['a', 'b', 'c'], 'b').should.equal(true);
has(['Hello', 'world'], /hello/i).should.equal(true);

Tests

Circle CI

$ make test

License

array-has is released under the MIT license.