astro-ghostcms/.pnpm-store/v3/files/eb/710e59fd6fbf5ff6df0e00f5246...

15 lines
330 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'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;
};