debian-mirror-gitlab/core-js/es/instance/trim.js

10 lines
279 B
JavaScript
Raw Normal View History

2019-09-25 13:30:05 +05:30
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;
};