frontend/.pnpm-store/v3/files/eb/710e59fd6fbf5ff6df0e00f52466c9da15cd8c2dbf50a983e0cedd75265f7769ad421eb4186194878acde4177bfb5f1c15bbfa562294fa021fcf37985d74c4

15 lines
330 B
Plaintext

'use strict';
var define = require('define-properties');
var getPolyfill = require('./polyfill');
module.exports = function shimStringTrim() {
var polyfill = getPolyfill();
define(String.prototype, { trim: polyfill }, {
trim: function testTrim() {
return String.prototype.trim !== polyfill;
}
});
return polyfill;
};