UNPKG

cli-util

Version:
5 lines (4 loc) 125 B
module.exports = function ltrim(str) { if(!str || typeof str !== 'string') return str; return str.replace(/^\s+/, ''); }