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');
|