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

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