Closed GoogleCodeExporter closed 9 years ago
Thanks for reporting this! Since String.split() also accepts a regular
expression as the separator, I adopted a slightly different method to solve
this problem:
var lines = data.split('\n');
=>
var lines = data.split(/\r?\n/);
And now it works fine for manually edited obj/stl files. Thanks again!
Original comment by Humu2...@gmail.com
on 1 May 2013 at 1:21
Original issue reported on code.google.com by
jimve...@gmail.com
on 17 Apr 2013 at 9:18