es6.string.trim.js 167 B

1234567
  1. 'use strict';
  2. // 21.1.3.25 String.prototype.trim()
  3. require('./_string-trim')('trim', function ($trim) {
  4. return function trim() {
  5. return $trim(this, 3);
  6. };
  7. });