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

7 lines
145 B
JavaScript

'use strict';
module.exports = function indexOf(a, b) {
a = String(a);
b = String(b);
return a.indexOf(b, a.length - b.length) !== -1;
};