UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

11 lines (8 loc) 196 B
'use strict'; /** * Returns true if the element has the specified Array, false otherwise. */ function contains(target, item) { return target.indexOf(item) > -1; } module.exports = contains;