Checks if array contains an infix.
Similar: infix, infixes, hasInfix, searchInfix.
Similar: hasValue, hasPrefix, hasInfix, hasSuffix, hasSubsequence, hasPermutation, hasPath.
This is part of package extra-array.
This is browserified, minified version of @extra-array/has-infix.
It is exported as global variable array_hasInfix.
CDN: unpkg, jsDelivr.
array.hasInfix(x, y, [fc], [fm]);
// x: an array
// y: infix?
// fc: compare function (a, b)
// fm: map function (v, i, x)
const array = require("extra-array");
var x = [1, 2, 3, 4];
array.hasInfix(x, [2, 3]);
// true
array.hasInfix(x, [-2, -3]);
// false
array.hasInfix(x, [-2, -3], (a, b) => Math.abs(a) - Math.abs(b));
// true
array.hasInfix(x, [-2, -3], null, v => Math.abs(v));
// true