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

10 lines
279 B
JavaScript

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