2.0.0 • Published 3 years ago

trim-left v2.0.0

Weekly downloads
513
License
MIT
Repository
github
Last release
3 years ago

trim-left

Similar to String#trim() but removes only whitespace on the left

Install

$ npm install trim-left

Usage

import trimLeft from 'trim-left';

trimLeft('  unicorn  ');
//=> 'unicorn  '

Related

  • trim-right - Similar to String#trim() but removes only whitespace on the right
  • trim-off-newlines - Similar to String#trim() but removes only newlines