@pdfme/generator 1.0.0-beta.7 → 1.0.0
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/declaration.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +21 -1
- package/dist/index.js.map +1 -1
- package/dist/types/helper.d.ts +2 -2
- package/package.json +10 -6
- package/src/helper.ts +14 -19
- package/tsconfig.json +1 -1
- package/webpack.config.js +2 -1
@@ -1,10 +1,24 @@
|
|
1
1
|
/*!
|
2
2
|
* @name @pdfme/generator
|
3
|
-
* @version 1.0.0
|
3
|
+
* @version 1.0.0 | Mon Mar 07 2022
|
4
4
|
* @author hand-dot
|
5
5
|
* @license MIT
|
6
6
|
*/
|
7
7
|
|
8
|
+
/*!
|
9
|
+
* The buffer module from node.js, for the browser.
|
10
|
+
*
|
11
|
+
* @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
|
12
|
+
* @license MIT
|
13
|
+
*/
|
14
|
+
|
15
|
+
/*!
|
16
|
+
* The buffer module from node.js, for the browser.
|
17
|
+
*
|
18
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
19
|
+
* @license MIT
|
20
|
+
*/
|
21
|
+
|
8
22
|
/*! *****************************************************************************
|
9
23
|
Copyright (c) Microsoft Corporation.
|
10
24
|
|
@@ -21,3 +35,9 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
21
35
|
***************************************************************************** */
|
22
36
|
|
23
37
|
/*! For license information please see index.js.LICENSE.txt */
|
38
|
+
|
39
|
+
/*! https://mths.be/punycode v1.3.2 by @mathias */
|
40
|
+
|
41
|
+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
42
|
+
|
43
|
+
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|