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

7 lines
215 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-05-27 17:36:13 +02:00
require('./_string-trim')('trimLeft', function($trim){
2016-10-10 03:43:44 +02:00
return function trimLeft(){
return $trim(this, 1);
};
2017-05-27 17:36:13 +02:00
}, 'trimStart');