deno.land / x / rambda@v9.1.1 / source / _internals / includes.js
12345678910111213import { compare } from './compare.js'
export function includes(a, list){ let index = -1 const { length } = list
while (++index < length) if (compare(list[ index ], a)) return true
return false}
Version Info