aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es.string.trim.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/modules/es.string.trim.js')
-rw-r--r--node_modules/core-js/modules/es.string.trim.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/node_modules/core-js/modules/es.string.trim.js b/node_modules/core-js/modules/es.string.trim.js
deleted file mode 100644
index 124768f..0000000
--- a/node_modules/core-js/modules/es.string.trim.js
+++ /dev/null
@@ -1,12 +0,0 @@
-'use strict';
-var $ = require('../internals/export');
-var $trim = require('../internals/string-trim').trim;
-var forcedStringTrimMethod = require('../internals/string-trim-forced');
-
-// `String.prototype.trim` method
-// https://tc39.github.io/ecma262/#sec-string.prototype.trim
-$({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
- trim: function trim() {
- return $trim(this);
- }
-});