hz-zhhq-app/node_modules/core-js/es/instance/trim.js

10 lines
279 B
JavaScript
Raw Normal View History

2025-01-22 10:53:47 +08:00
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;
};