it('should split pure single quoted string', () => {
    const i = "I said 'I am sorry.', and he said \"it doesn't matter.\"";
    const o = splitargs(i);
    expect(o).toHaveLength(7);
    expect(o[0]).toBe('I');