common-utils-kit 1.0.7 → 1.0.9

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/index.js +7 -7
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -3,13 +3,13 @@ import * as test from './src/test.js';
3
3
  import * as format from './src/format.js';
4
4
  import * as tool from './src/tool.js';
5
5
  import * as files from './src/files.js';
6
- import directive from './src/directive.js';
7
- console.log(' ', test.hasValue(0))
6
+ import directive from './src/directives.js';
7
+ console.log(' ', test)
8
8
  export default {
9
- test: { test },
10
- format: { format },
11
- tool: { tool },
12
- files: { files },
13
- directive:directive
9
+ test: test,
10
+ format: format,
11
+ tool: tool,
12
+ files: files,
13
+ directive: directive
14
14
  }
15
15
  // https://www.cnblogs.com/oldCode/p/learnjts.html
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "common-utils-kit",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "type": "module",