tuijs-util 1.2.1 → 1.2.2

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -11,13 +11,13 @@ All utilities are provide both in ESM and CJS formats. Simply specific utility y
11
11
 
12
12
  ## ESM
13
13
  ```javascript
14
- import { utilFunctionName, utilFunctionName2 } from 'ttbjs';
14
+ import { utilFunctionName, utilFunctionName2 } from 'tuijs-util';
15
15
  utilFunctionName();
16
16
  utilFunctionName2();
17
17
  ```
18
18
  ## CJS
19
19
  ```javascript
20
- const { utilFunctionName, utilFunctionName2 } = require('ttbjs');
20
+ const { utilFunctionName, utilFunctionName2 } = require('tuijs-util');
21
21
  utilFunctionName();
22
22
  utilFunctionName2();
23
23
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tuijs-util",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "module": "src/esm/index.js",
5
5
  "main": "src/cjs/index.cjs",
6
6
  "exports": {