@pdfme/generator 1.0.11 → 1.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -92,15 +92,7 @@ import { Template, generate } from '@pdfme/generator';
92
92
  import { Template, Designer, Form, Viewer } from '@pdfme/ui';
93
93
  ```
94
94
 
95
- **All objects use `Template`, which will be briefly explained in the next section.
96
- **
97
-
98
- This package transiently relies on the function `atob()` being present in the globl namespace. This function is an old WebAPI which Node.js [added for legacy reasons in v16.0 to the global namespace](https://nodejs.org/dist/latest-v16.x/docs/api/globals.html#atobdata). If you are still using Node.js v14 or v15 you need to ensure that there's a function "atob()" in your global object which you can do by adding this snippet somewhere before executing any code from '@pdfme/generator':
99
- ```js
100
- if (!global.atob) {
101
- global.atob = (data) => Buffer.from(data, "base64");
102
- }
103
- ```
95
+ **All objects use `Template`, which will be briefly explained in the next section.**
104
96
 
105
97
  ## Template
106
98