@duplojs/utils 1.4.46 → 1.4.48
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/dist/common/index.d.ts +2 -1
- package/dist/common/mimeType.cjs +1081 -0
- package/dist/common/mimeType.d.ts +22 -0
- package/dist/common/mimeType.mjs +1079 -0
- package/dist/common/path.cjs +114 -0
- package/dist/common/path.d.ts +145 -0
- package/dist/common/path.mjs +114 -0
- package/dist/dataParser/base.cjs +4 -0
- package/dist/dataParser/base.d.ts +34 -0
- package/dist/dataParser/base.mjs +4 -0
- package/dist/dataParser/extended/date.d.ts +3 -3
- package/dist/dataParser/extended/time.d.ts +3 -3
- package/dist/dataParser/identifier.d.ts +16 -4
- package/dist/dataParser/parsers/array/index.cjs +1 -0
- package/dist/dataParser/parsers/array/index.mjs +1 -0
- package/dist/dataParser/parsers/date.cjs +7 -7
- package/dist/dataParser/parsers/date.d.ts +4 -4
- package/dist/dataParser/parsers/date.mjs +7 -7
- package/dist/dataParser/parsers/lazy.cjs +1 -0
- package/dist/dataParser/parsers/lazy.mjs +1 -0
- package/dist/dataParser/parsers/nullable.cjs +1 -0
- package/dist/dataParser/parsers/nullable.mjs +1 -0
- package/dist/dataParser/parsers/object/index.cjs +2 -0
- package/dist/dataParser/parsers/object/index.mjs +2 -0
- package/dist/dataParser/parsers/optional.cjs +1 -0
- package/dist/dataParser/parsers/optional.mjs +1 -0
- package/dist/dataParser/parsers/pipe.cjs +1 -0
- package/dist/dataParser/parsers/pipe.mjs +1 -0
- package/dist/dataParser/parsers/record/index.cjs +1 -0
- package/dist/dataParser/parsers/record/index.mjs +1 -0
- package/dist/dataParser/parsers/recover.cjs +1 -0
- package/dist/dataParser/parsers/recover.mjs +1 -0
- package/dist/dataParser/parsers/time/index.cjs +8 -8
- package/dist/dataParser/parsers/time/index.d.ts +4 -4
- package/dist/dataParser/parsers/time/index.mjs +8 -8
- package/dist/dataParser/parsers/transform.cjs +1 -0
- package/dist/dataParser/parsers/transform.mjs +1 -0
- package/dist/dataParser/parsers/tuple.cjs +2 -0
- package/dist/dataParser/parsers/tuple.mjs +2 -0
- package/dist/dataParser/parsers/union.cjs +2 -0
- package/dist/dataParser/parsers/union.mjs +2 -0
- package/dist/index.cjs +7 -2
- package/dist/index.mjs +2 -2
- package/dist/metadata.json +18 -68
- package/package.json +1 -1
- package/dist/common/path/getBaseName.cjs +0 -25
- package/dist/common/path/getBaseName.d.ts +0 -26
- package/dist/common/path/getBaseName.mjs +0 -23
- package/dist/common/path/getExtensionName.cjs +0 -17
- package/dist/common/path/getExtensionName.d.ts +0 -21
- package/dist/common/path/getExtensionName.mjs +0 -15
- package/dist/common/path/getParentFolderPath.cjs +0 -21
- package/dist/common/path/getParentFolderPath.d.ts +0 -23
- package/dist/common/path/getParentFolderPath.mjs +0 -19
- package/dist/common/path/index.cjs +0 -19
- package/dist/common/path/index.d.ts +0 -27
- package/dist/common/path/index.mjs +0 -10
- package/dist/common/path/isAbsolute.cjs +0 -15
- package/dist/common/path/isAbsolute.d.ts +0 -21
- package/dist/common/path/isAbsolute.mjs +0 -13
- package/dist/common/path/resolveFrom.cjs +0 -18
- package/dist/common/path/resolveFrom.d.ts +0 -27
- package/dist/common/path/resolveFrom.mjs +0 -16
- package/dist/common/path/resolveRelative.cjs +0 -51
- package/dist/common/path/resolveRelative.d.ts +0 -23
- package/dist/common/path/resolveRelative.mjs +0 -49
package/dist/common/index.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export * from "./promiseObject";
|
|
|
36
36
|
export * from "./simpleClone";
|
|
37
37
|
export * from "./sleep";
|
|
38
38
|
export * from "./stringToBytes";
|
|
39
|
+
export * from "./mimeType";
|
|
39
40
|
export * from "./stringToMillisecond";
|
|
40
41
|
export * from "./toJSON";
|
|
41
42
|
export * from "./toTransform";
|
|
@@ -72,4 +73,4 @@ export * from "./hasKinds";
|
|
|
72
73
|
export * from "./toCurriedPredicate";
|
|
73
74
|
export * from "./pipeCall";
|
|
74
75
|
export * from "./asserts";
|
|
75
|
-
export *
|
|
76
|
+
export * from "./path";
|