trim.js 367 B

123456789101112131415161718
  1. function trim(str, pos = 'both') {
  2. if(str==null){
  3. str=''
  4. }
  5. if (pos == 'both') {
  6. return str.replace(/^\s+|\s+$/g, "");
  7. } else if (pos == "left") {
  8. return str.replace(/^\s*/, '');
  9. } else if (pos == 'right') {
  10. return str.replace(/(\s*$)/g, "");
  11. } else if (pos == 'all') {
  12. return str.replace(/\s+/g, "");
  13. } else {
  14. return str;
  15. }
  16. }
  17. export default trim