2017-08-09 06:50:59 +00:00
|
|
|
exports.find = find;
|
2017-09-14 21:14:22 +00:00
|
|
|
exports.read = read;
|
2014-06-24 04:00:39 +00:00
|
|
|
exports.parse = parse;
|
2017-09-14 21:14:22 +00:00
|
|
|
exports.write = write;
|
|
|
|
exports.writeFile = write_file;
|
2014-06-24 04:00:39 +00:00
|
|
|
exports.utils = {
|
2017-09-14 21:14:22 +00:00
|
|
|
cfb_new: cfb_new,
|
|
|
|
cfb_add: cfb_add,
|
|
|
|
cfb_del: cfb_del,
|
|
|
|
cfb_mov: cfb_mov,
|
|
|
|
cfb_gc: cfb_gc,
|
2014-06-24 04:00:39 +00:00
|
|
|
ReadShift: ReadShift,
|
|
|
|
CheckField: CheckField,
|
|
|
|
prep_blob: prep_blob,
|
|
|
|
bconcat: bconcat,
|
2018-09-04 07:14:20 +00:00
|
|
|
use_zlib: use_zlib,
|
|
|
|
_deflateRaw: _deflate,
|
|
|
|
_inflateRaw: _inflate,
|
2014-06-24 04:00:39 +00:00
|
|
|
consts: consts
|
|
|
|
};
|
|
|
|
|
|
|
|
return exports;
|