remove unneeded len assign #8

Closed
zetxx wants to merge 1 commits from master into master
Showing only changes of commit f8e7b6613f - Show all commits

@ -386,7 +386,6 @@
default: throw new Error("Unsupported magic: " + cp + " " + magic[cp]);
}
else throw new Error("Unrecognized CP: " + cp);
out.length = j;
out = out.slice(0,j);
if(typeof Buffer === 'undefined') return (ofmt == 'str') ? out.map(sfcc).join("") : out;
if(ofmt === undefined || ofmt === 'buf') return out;