pdf-parser-client-side
Advanced tools
Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "pdf-parser-client-side", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "A lightweight easy to use package to parse text from PDF files on client side without any server dependency.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -69,4 +69,5 @@ <div align="center"> | ||
| `variant` Value | Description | Regular Expression | Retained Characters | | ||
| ----------------------------------------------- | -------------------------------------------------------------------------------------- | ---------------------------------- | -------------------------- | --------------------- | | ||
| ----------------------------------------------- | -------------------------------------------------------------------------------------- | ---------------------------------- | -------------------------- | | ||
| `clean` | Removes all non-ASCII characters and any spaces that follow them. | `/[^\x00-\x7F]+\ \*(?:[^\x00-\x7F] | )\*/g` | ASCII characters only | | ||
@@ -78,2 +79,3 @@ | `alphanumeric` | Retains only alphanumeric characters (letters and numbers). | `/[^a-zA-Z0-9]+/g` | A-Z, a-z, 0-9 | | ||
#### Example Usage | ||
@@ -80,0 +82,0 @@ |
120
14682