pad-end.js 290 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 var padEnd = require('../string/virtual/pad-end'); var StringPrototype = String.prototype; module.exports = function (it) { var own = it.padEnd; return typeof it === 'string' || it === StringPrototype || (it instanceof String && own === StringPrototype.padEnd) ? padEnd : own; };