wallet-core/node_modules/core-js/modules/es7.string.trim-left.js

8 lines
219 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
'use strict';
// https://github.com/sebmarkbage/ecmascript-string-left-right-trim
2017-08-14 05:01:11 +02:00
require('./_string-trim')('trimLeft', function ($trim) {
return function trimLeft() {
2016-10-10 03:43:44 +02:00
return $trim(this, 1);
};
2017-08-14 05:01:11 +02:00
}, 'trimStart');