@extra-array/has-suffix
v2.10.19
Published
Checks if array ends with a suffix.
Downloads
44
Maintainers
Readme
Checks if array ends with a suffix. :package: :smiley_cat: :running: :vhs: :moon: :scroll: :newspaper: :blue_book:
Similar: suffix, suffixes, hasSuffix. Similar: hasValue, hasPrefix, hasInfix, hasSuffix, hasSubsequence, hasPermutation, hasPath.
This is part of package extra-array.
array.hasSuffix(x, y, [fc], [fm]);
// x: an array
// y: suffix?
// fc: compare function (a, b)
// fm: map function (v, i, x)
const array = require("extra-array");
var x = [1, 2, 3, 4];
array.hasSuffix(x, [3, 4]);
// true
array.hasSuffix(x, [-3, -4]);
// false
array.hasSuffix(x, [-3, -4], (a, b) => Math.abs(a) - Math.abs(b));
// true
array.hasSuffix(x, [-3, -4], null, v => Math.abs(v));
// true