Configurable Javascript text parser using Regex used by the Innovation Lab of the Federal Justice of São Paulo (iJuspLab).
The library was developed in Typescript and can be used both in Node and in the browser. Distribution files are located inside the folder ./dist
and type declaration files inside the folder ./types
.
npm install @ijuplab/text-parser
or
yarn add @ijuplab/parser
const { parser } = require('@ijusplab/text-parser');
const text = 'Example text';
console.log(new parser(text));
or
ìmport { parser } from '@ijusplab/text-parser';
const text = 'Example text';
console.log(new parser(text));
As a global object:
<!-- Instalando no escopo global: -->
<script src="https://unpkg.com/@ijusplab/text-parser/dist/index.umd.min.js"></script>
<script>
const text = 'Example text';
console.log(TextParser);
console.log(new TextParser.parser(text));
</script>
As a ES2016 module:
<!-- Instalando como um módulo: -->
<script type="module">
import { parser } from 'https://unpkg.com/@ijusplab/text-parser/dist/index.esm.min.js';
console.log(new TextParser.parser(text));
</script>
All software files are distributed under the MIT license. Copyright held by iJuspLab.
Any institutional symbols, such as coats of arms, emblems, badges, logos etc, belonging to or representing the Federal Justice of São Paulo (Justiça Federal de São Paulo - JFSP), iJuspLab, Equipe de Gestão de Dados - EGD, Incubadora de Soluções Tecnológicas, Núcleo de Inovação Tecnológica - NUIT or any of their agencies, departments, sectors, branches, affiliates, partners or controlling organizations, either stored in this repository or referenced herein through hyperlinks, are not licensed and may not be used without the prior written consent of the legal representatives of the Federal Justice of São Paulo.