epiphany/node_modules/ends-with/benchmark/implementations/while.js
2023-12-09 22:48:07 -08:00

20 lines
No EOL
304 B
JavaScript

'use strict'
module.exports = function (a, b) {
if (Array.isArray(a)) {
return a[a.length - 1] === b;
}
a = String(a);
b = String(b);
var i = b.length;
var len = a.length - i;
while (i--) {
if (b.charAt(i) !== a.charAt(len + i)) {
return false;
}
}
return true;
};