umt 2.2.1 → 2.3.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.
Files changed (41) hide show
  1. package/module/Function/curry.d.ts +141 -0
  2. package/module/Function/curry.js +11 -0
  3. package/module/Function/curry.js.map +1 -0
  4. package/module/Function/index.d.ts +1 -0
  5. package/module/Function/index.js +2 -0
  6. package/module/Function/index.js.map +1 -0
  7. package/module/Tool/index.d.ts +1 -0
  8. package/module/Tool/index.js +1 -0
  9. package/module/Tool/index.js.map +1 -1
  10. package/module/Tool/pipe.d.ts +66 -0
  11. package/module/Tool/pipe.js +98 -0
  12. package/module/Tool/pipe.js.map +1 -0
  13. package/module/Validate/index.d.ts +1 -0
  14. package/module/Validate/index.js +1 -0
  15. package/module/Validate/index.js.map +1 -1
  16. package/module/Validate/isString.d.ts +9 -0
  17. package/module/Validate/isString.js +12 -0
  18. package/module/Validate/isString.js.map +1 -0
  19. package/module/es5/Function/curry.d.ts +141 -0
  20. package/module/es5/Function/curry.js +38 -0
  21. package/module/es5/Function/index.d.ts +1 -0
  22. package/module/es5/Function/index.js +16 -0
  23. package/module/es5/Tool/index.d.ts +1 -0
  24. package/module/es5/Tool/index.js +11 -0
  25. package/module/es5/Tool/pipe.d.ts +66 -0
  26. package/module/es5/Tool/pipe.js +129 -0
  27. package/module/es5/Validate/index.d.ts +1 -0
  28. package/module/es5/Validate/index.js +11 -0
  29. package/module/es5/Validate/isString.d.ts +9 -0
  30. package/module/es5/Validate/isString.js +16 -0
  31. package/module/es5/index.d.ts +1 -0
  32. package/module/es5/index.js +11 -0
  33. package/module/es5/tests/unit/Function/curry.test.d.ts +1 -0
  34. package/module/es5/tests/unit/Function/curry.test.js +138 -0
  35. package/module/es5/tests/unit/Tool/pipe.test.d.ts +1 -0
  36. package/module/es5/tests/unit/Tool/pipe.test.js +445 -0
  37. package/module/es5/tsconfig.tsbuildinfo +1 -1
  38. package/module/index.d.ts +1 -0
  39. package/module/index.js +1 -0
  40. package/module/index.js.map +1 -1
  41. package/package.json +18 -18
package/module/index.d.ts CHANGED
@@ -4,6 +4,7 @@ export * from "./Color";
4
4
  export * from "./Consts";
5
5
  export * from "./Date";
6
6
  export * from "./Error";
7
+ export * from "./Function";
7
8
  export * from "./IP";
8
9
  export * from "./Math";
9
10
  export * from "./Object";
package/module/index.js CHANGED
@@ -4,6 +4,7 @@ export * from "./Color";
4
4
  export * from "./Consts";
5
5
  export * from "./Date";
6
6
  export * from "./Error";
7
+ export * from "./Function";
7
8
  export * from "./IP";
8
9
  export * from "./Math";
9
10
  export * from "./Object";
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,MAAM,CAAC;AACrB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,MAAM,CAAC;AACrB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,MAAM,CAAC;AACrB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,MAAM,CAAC;AACrB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC"}
package/package.json CHANGED
@@ -5,32 +5,32 @@
5
5
  },
6
6
  "description": "個人的に作った便利関数集 個人用途なので破壊的変更がある可能性があります。 Main Packageに依存関係はありません。 JavaScriptからの呼び出しに対応しています。",
7
7
  "devDependencies": {
8
- "@babel/cli": "^7.26.4",
9
- "@babel/core": "^7.26.9",
8
+ "@babel/cli": "^7.27.0",
9
+ "@babel/core": "^7.26.10",
10
10
  "@babel/preset-env": "^7.26.9",
11
- "@babel/preset-typescript": "^7.26.0",
11
+ "@babel/preset-typescript": "^7.27.0",
12
12
  "@biomejs/biome": "1.9.4",
13
- "@swc/core": "^1.10.16",
13
+ "@swc/core": "^1.11.20",
14
14
  "@swc/jest": "^0.2.37",
15
15
  "@types/bun": "^1.2.9",
16
16
  "@types/jest": "^29.5.14",
17
- "@types/lodash": "^4.17.15",
18
- "@types/node": "^22.13.4",
19
- "@typescript-eslint/eslint-plugin": "^8.24.0",
20
- "@typescript-eslint/parser": "^8.24.0",
21
- "bun-types": "^1.2.2",
22
- "dependency-cruiser": "^16.9.0",
23
- "eslint": "^9.20.1",
17
+ "@types/lodash": "^4.17.16",
18
+ "@types/node": "^22.14.1",
19
+ "@typescript-eslint/eslint-plugin": "^8.29.1",
20
+ "@typescript-eslint/parser": "^8.29.1",
21
+ "bun-types": "^1.2.9",
22
+ "dependency-cruiser": "^16.10.1",
23
+ "eslint": "^9.24.0",
24
24
  "eslint-plugin-import": "^2.31.0",
25
- "eslint-plugin-unicorn": "^56.0.1",
25
+ "eslint-plugin-unicorn": "^58.0.0",
26
26
  "gh-pages": "^6.3.0",
27
27
  "jest": "^29.7.0",
28
28
  "lodash": "^4.17.21",
29
- "ts-jest": "^29.2.5",
29
+ "ts-jest": "^29.3.2",
30
30
  "ts-node": "^10.9.2",
31
- "tsc-alias": "^1.8.10",
32
- "typedoc": "^0.27.7",
33
- "typescript": "^5.7.3"
31
+ "tsc-alias": "^1.8.15",
32
+ "typedoc": "^0.28.2",
33
+ "typescript": "^5.8.3"
34
34
  },
35
35
  "directories": {
36
36
  "doc": "doc",
@@ -53,7 +53,7 @@
53
53
  },
54
54
  "scripts": {
55
55
  "build": "tsc && tsc-alias -p tsconfig.json",
56
- "build:cjs": "tsc -p tsconfig.cjs.json && node cjs.build.mjs && cp LICENSE common-module/LICENSE && cp README.md common-module/README.md",
56
+ "build:cjs": "tsc -p tsconfig.cjs.json && node cjs.build.mjs && cp LICENSE common-module/LICENSE && cp README.md common-module/README.md && cp .npmignore common-module/.npmignore",
57
57
  "build:babel": "babel src --extensions '.ts' --out-dir module/es5 && tsc --emitDeclarationOnly --outDir module/es5",
58
58
  "build:cjs:babel": "babel src --extensions '.ts' --out-dir common-module/module/es5 && tsc --emitDeclarationOnly --outDir common-module/module/es5",
59
59
  "build:full": "yarn build && yarn build:cjs && yarn build:babel && yarn build:cjs:babel",
@@ -71,6 +71,6 @@
71
71
  },
72
72
  "type": "module",
73
73
  "types": "module/index.d.js",
74
- "version": "2.2.1",
74
+ "version": "2.3.0",
75
75
  "packageManager": "yarn@1.22.22"
76
76
  }