GT2/Ejectable/node_modules/core-js/modules/es7.string.trim-left.js

7 lines
203 B
JavaScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
'use strict';
// https://github.com/sebmarkbage/ecmascript-string-left-right-trim
require('./$.string-trim')('trimLeft', function($trim){
return function trimLeft(){
return $trim(this, 1);
};
});