UNPKG

@wolfrog/parse-xbrl

Version:

Module to parse xbrl documents and output json.

9 lines (7 loc) 253 B
import { XbrlParser } from './classes/XbrlParser.js'; export async function parse(filePath) { return await new XbrlParser().parseFile(filePath); } export async function parseStr(str,country) { return await new XbrlParser().parseStr(str,country); }