wallet-core/node_modules/core-js/modules/es6.string.trim.js

8 lines
167 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
'use strict';
// 21.1.3.25 String.prototype.trim()
2017-08-14 05:01:11 +02:00
require('./_string-trim')('trim', function ($trim) {
return function trim() {
2016-10-10 03:43:44 +02:00
return $trim(this, 3);
};
2017-08-14 05:01:11 +02:00
});