@esm-test/guards 1.0.0-beta.6 → 1.0.0-beta.7

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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.0.0-beta.7
2
+
3
+ - fixed index.d.ts fn name for throwNotStringOrEmpty
4
+
1
5
  # 1.0.0-beta.6
2
6
 
3
7
  - added throwEmpty (for strings)
package/index.d.ts CHANGED
@@ -26,6 +26,6 @@ declare module '@esm-test/guards' {
26
26
  export function throwEmpty(guardName: string, guard: string): void;
27
27
 
28
28
  export function throwUndefinedOrNull(guardName: string, guard: TGuardable): void;
29
- export function throwNotSetOrEmpty(guardName: string, guard: string): void;
29
+ export function throwNotStringOrEmpty(guardName: string, guard: string): void;
30
30
 
31
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esm-test/guards",
3
- "version": "1.0.0-beta.6",
3
+ "version": "1.0.0-beta.7",
4
4
  "description": "A js utility library for guarding objects, instances and types",
5
5
  "publishConfig": {
6
6
  "access": "public"