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

8 lines
226 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08: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);
};
}, 'trimStart');