1. /**
    2. * 去除字符串全部空格
    3. */
    4. export function trimAll(str) {
    5. return str.replace(/\s+/g, "");
    6. }

    image.png