UNPKG

tangerine-pie-key-pair

Version:
13 lines (9 loc) 277 B
import { KeyPair } from '../classes/KeyPair.js'; export async function readKeyFile(path=null) { const keyPair = new KeyPair(); if (path === null) { console.log('generated') return keyPair; } return await keyPair.readFile(path); }