import * as A from "flurp/array";const hasTwo = A.includes(2);hasTwo([2, 3, 4]); // truehasTwo([3, 4]); // false
Example