0.0.2 • Published 2 years ago

ssa-parse v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Social Security copy/paste parser

https://ssa.tools/ includes a tool, which has been extracted for as a stand-alone module, to capture social security wage information by copy & pasting from the social security website.

Usage, copy/paste data from the social security website into a file:

    import { parsePaste } from 'ssa-parse';
    import { readFileSync } from 'fs';

    const pasteData = readFileSync('./earnings-record.txt', 'utf8');
    const earnings = parsePaste(pasteData);