SheetJS
5c7df1f3db
- reworked IIFE - avoid Buffer read helpers (see https://github.com/joyent/node/issues/7809) - avoid nested functions in parse - eliminate consecutive nulls in test files (libreoffice) - travis + coveralls support - jscs linting
6 lines
187 B
JavaScript
6 lines
187 B
JavaScript
var describe = function(m,cb){if(cb) cb();};
|
|
describe.skip = function(m,cb){};
|
|
var it = function(m,cb){if(cb) cb();};
|
|
it.skip = function(m,cb){};
|
|
var before = function(cb){if(cb) cb();};
|