@stacksjs/browser 0.67.0 → 0.68.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.
@@ -1,2 +1,2 @@
1
- export { toString } from "@stacksjs/strings";
2
- export declare function loop(times: number, callback: any): Promise<void>;
1
+ export { toString } from '@stacksjs/strings'
2
+ export declare function loop(times: number, callback: any): Promise<void>;
@@ -0,0 +1 @@
1
+ export { debounce } from 'perfect-debounce'
@@ -0,0 +1,2 @@
1
+ declare function s.forEach(fn => fn?.()): void;
2
+ export declare function tap<T>(value: T, callback: (value: T) => void): T { callback(value) return value }};
@@ -0,0 +1,4 @@
1
+ export declare function notNullish<T>(v: T | null | undefined): v is NonNullable<T>;
2
+ export declare function noNull<T>(v: T | null): v is Exclude<T, null>;
3
+ export declare function notUndefined<T>(v: T): v is Exclude<T, undefined>;
4
+ export declare function isTruthy<T>(v: T): v is NonNullable<T>;
package/dist/index.d.ts CHANGED
@@ -1 +1 @@
1
- export * from "./utils/";
1
+ export * from './utils/'