Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 315 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 315 Bytes

node-alivecor-ecg

Parser of AliveCor ECG File

How to use

import { createAliveCorEcgParser } from 'node-alivecor-ecg';
import * as fs from 'fs';

const file = fs.readFileSync('ecg.atc', { encoding: 'binary' });
const parser = createAliveCorEcgParser();
const parsed = parser.parse(file);