ends-with.js 300 B

123456789
  1. var endsWith = require('../string/virtual/ends-with');
  2. var StringPrototype = String.prototype;
  3. module.exports = function (it) {
  4. var own = it.endsWith;
  5. return typeof it === 'string' || it === StringPrototype
  6. || (it instanceof String && own === StringPrototype.endsWith) ? endsWith : own;
  7. };