version bump 0.2.0: cstr/wstr

This commit is contained in:
SheetJS 2013-09-15 03:37:35 -07:00
parent aeefaecd76
commit 79acaa8747
2 changed files with 8 additions and 1 deletions

7
cfb.js
View File

@ -102,6 +102,13 @@ function ReadShift(size, t) {
case 'utf8': size = t; o = this.utf8(this.l, this.l + size); break;
case 'utf16le': size = 2*t; o = this.utf16le(this.l, this.l + size); break;
case 'cstr': size = 0, o = "";
while((w=this.readUInt8(this.l + size++))!=0) o+= String.fromCharCode(w);
break;
case 'wstr': size = 0, o = "";
while((w=this.readUInt16LE(this.l +size))!=0) o+= String.fromCharCode(w),size+=2;
size+=2; break;
}
this.l+=size; return o;
}

View File

@ -1,6 +1,6 @@
{
"name": "cfb",
"version": "0.1.0",
"version": "0.2.0",
"author": "Niggler",
"description": "Compound File Binary File Format extractor",
"keywords": [ "cfb", "compression", "office" ],