sporasub-sp2
v1.0.0
Published
A set of streams that read `.dive` files from Sporasub SP2 diving watch
Downloads
9
Readme
Sporasub SP2 - Dive reader
A set of streams that read .dive
files from Sporasub SP2 diving watch
const page = require('sporasub-sp2/page');
const json = require('sporasub-sp2/to-json');
fs.createReadStream('my.dive')
.pipe(page())
.pipe(json())
.on('data', (dive) => {
console.log(dive); // object
});
;