@klyper/validations 0.2.0 → 0.2.3
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/index.cjs +1 -1
- package/dist/index.d.ts +5 -3
- package/dist/index.js +1 -1
- package/package.json +5 -1
package/dist/index.cjs
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @klyper/validations v0.2.
|
|
2
|
+
* @klyper/validations v0.2.3
|
|
3
3
|
* Validation helpers for the Klyper ecosystem.
|
|
4
4
|
* (c) 2026 Andrew Caires
|
|
5
5
|
* @license: MIT
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
declare function isEmail(value: string): boolean;
|
|
8
|
+
declare function isNonEmptyString(value: unknown): value is string;
|
|
9
|
+
|
|
10
|
+
export { isEmail, isNonEmptyString };
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@klyper/validations",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Validation helpers for the Klyper ecosystem.",
|
|
5
5
|
"author": "Andrew Caires",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/andrewcaires/klyper.git"
|
|
10
|
+
},
|
|
7
11
|
"type": "module",
|
|
8
12
|
"main": "./dist/index.cjs",
|
|
9
13
|
"module": "./dist/index.js",
|