version bump 0.8.1: byte shield
This commit is contained in:
parent
d03d13d6f2
commit
6ac8a02762
2
bin/cfb
2
bin/cfb
@ -3,7 +3,7 @@
|
||||
var CFB = require('../cfb');
|
||||
var fs = require('fs'), program = require('commander');
|
||||
program
|
||||
.version('0.7.0')
|
||||
.version('0.8.1')
|
||||
.usage('[options] <file>')
|
||||
.option('-q, --quiet', 'print but do not extract')
|
||||
.parse(process.argv);
|
||||
|
@ -61,7 +61,7 @@ var Base64 = (function(){
|
||||
|
||||
function s2a(s) {
|
||||
if(typeof Buffer !== 'undefined') return new Buffer(s, "binary");
|
||||
var w = s.split("").map(function(x){return x.charCodeAt(0);});
|
||||
var w = s.split("").map(function(x){ return x.charCodeAt(0) & 0xff; });
|
||||
return w;
|
||||
}
|
||||
|
||||
|
2
cfb.js
2
cfb.js
@ -65,7 +65,7 @@ var Base64 = (function(){
|
||||
|
||||
function s2a(s) {
|
||||
if(typeof Buffer !== 'undefined') return new Buffer(s, "binary");
|
||||
var w = s.split("").map(function(x){return x.charCodeAt(0);});
|
||||
var w = s.split("").map(function(x){ return x.charCodeAt(0) & 0xff; });
|
||||
return w;
|
||||
}
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
var CFB = <CFB>require('../cfb');
|
||||
var fs = require('fs'), program = require('commander');
|
||||
program
|
||||
.version('0.7.0')
|
||||
.version('0.8.1')
|
||||
.usage('[options] <file>')
|
||||
.option('-q, --quiet', 'print but do not extract')
|
||||
.parse(process.argv);
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "cfb",
|
||||
"version": "0.8.0",
|
||||
"version": "0.8.1",
|
||||
"author": "SheetJS",
|
||||
"description": "Compound File Binary File Format extractor",
|
||||
"keywords": [ "cfb", "compression", "office" ],
|
||||
|
Loading…
Reference in New Issue
Block a user