SheetJS
93513b6e52
- more specializations in cptable - removed functional badnesses in cptable - bits reworked to minimize functional impact (which caused deopts) some loss in coverage due to standard codepages missing astral characters
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();};
|