GT2/GT2-iOS/node_modules/core-js/modules/es7.string.trim-right.js

8 lines
219 B
JavaScript
Raw Normal View History

2018-02-12 17:26:06 +00:00
'use strict';
// https://github.com/sebmarkbage/ecmascript-string-left-right-trim
require('./_string-trim')('trimRight', function ($trim) {
return function trimRight() {
return $trim(this, 2);
};
}, 'trimEnd');