It should return an empty array when the input list is empty
string[] empty; empty.cleanString.should.equal(empty);
It should remove the " from the begin and end of the string
[`"1"`, `"2"`].cleanString.should.equal([`1`, `2`]);
See Implementation