version bump 0.2.0: cstr/wstr
This commit is contained in:
parent
aeefaecd76
commit
79acaa8747
7
cfb.js
7
cfb.js
@ -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;
|
||||
}
|
||||
|
@ -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" ],
|
||||
|
Loading…
Reference in New Issue
Block a user