UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

9 lines (7 loc) 179 B
/** * Returns true if the element has the specified Array, false otherwise. */ function contains(target, item) { return target.indexOf(item) > -1; } export default contains;