github-pages-deploy-action/node_modules/core-js-pure/es/instance/pad-end.js
2020-03-06 22:45:40 -05:00

10 lines
290 B
JavaScript

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;
};