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

10 lines
295 B
JavaScript

var trimEnd = require('../string/virtual/trim-end');
var StringPrototype = String.prototype;
module.exports = function (it) {
var own = it.trimEnd;
return typeof it === 'string' || it === StringPrototype
|| (it instanceof String && own === StringPrototype.trimEnd) ? trimEnd : own;
};