index.js 234 B

1234567891011121314
  1. exports = module.exports = trim;
  2. function trim(str){
  3. return str.replace(/^\s*|\s*$/g, '');
  4. }
  5. exports.left = function(str){
  6. return str.replace(/^\s*/, '');
  7. };
  8. exports.right = function(str){
  9. return str.replace(/\s*$/, '');
  10. };