Am Sat, 14 Dec 2013 17:41:22 +0100
schrieb "bearophile" <bearophileh...@lycos.com>:

> seany:
> 
> > for example, splitting "hello  world" (two spaces between 
> > words) will return ["hello" , "", "world"]
> 
> It's a bug.
> 
> Bye,
> bearophile

Not at all, the documentation explicitly states:

  assert(equal(splitter("hello  world", ' '), [ "hello", "", "world" ]));

-- 
Marco

Reply via email to