Current File : //usr/lib/node_modules/bower/lib/node_modules/ends-with/benchmark/implementations/substring.js
'use strict'

module.exports = function(a, b) {
  a = String(a);
  b = String(b);
  return a.substring(a.length - b.length) === b;
};