Your IP : 216.73.217.154


Current Path : /var/www/html/eform/npm/Ladda/node_modules/underscore.string/
Upload File :
Current File : /var/www/html/eform/npm/Ladda/node_modules/underscore.string/strRightBack.js

var makeString = require('./helper/makeString');

module.exports = function strRightBack(str, sep) {
  str = makeString(str);
  sep = makeString(sep);
  var pos = !sep ? -1 : str.lastIndexOf(sep);
  return~ pos ? str.slice(pos + sep.length, str.length) : str;
};