assert( ArgParserSplitter([ "a", "b c", "--one", "-tw o", "--thr=ee" ]).equal([ "a", "b c", "--one", "-tw", "o", "--thr", "ee" ]) );
See Implementation