.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / es / instance / pad-end.js
1 var padEnd = require('../string/virtual/pad-end');
2
3 var StringPrototype = String.prototype;
4
5 module.exports = function (it) {
6   var own = it.padEnd;
7   return typeof it === 'string' || it === StringPrototype
8     || (it instanceof String && own === StringPrototype.padEnd) ? padEnd : own;
9 };