blob: 40ea6030bc1b8832f765d3f73cedba382cf8568d (
plain)
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;
};
|