@xylabs/timer 4.13.20 → 4.13.21

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 (2) hide show
  1. package/README.md +56 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -12,13 +12,66 @@
12
12
  [![snyk-badge][]][snyk-link]
13
13
  [![socket-badge][]][socket-link]
14
14
 
15
- Version: 4.13.19
16
15
 
17
16
  Base functionality used throughout XY Labs TypeScript/JavaScript libraries
18
17
 
19
- ## Documentation
18
+ ## API Documentation
19
+
20
+ **@xylabs/timer**
21
+
22
+ ***
23
+
24
+ ## Functions
25
+
26
+ - [setTimeoutEx](#functions/setTimeoutEx)
27
+ - [clearTimeoutEx](#functions/clearTimeoutEx)
28
+
29
+ ### functions
30
+
31
+ ### <a id="clearTimeoutEx"></a>clearTimeoutEx
32
+
33
+ [**@xylabs/timer**](#../README)
34
+
35
+ ***
36
+
37
+ ```ts
38
+ function clearTimeoutEx(id): void;
39
+ ```
40
+
41
+ ## Parameters
42
+
43
+ ### id
44
+
45
+ `string`
46
+
47
+ ## Returns
48
+
49
+ `void`
50
+
51
+ ### <a id="setTimeoutEx"></a>setTimeoutEx
52
+
53
+ [**@xylabs/timer**](#../README)
54
+
55
+ ***
56
+
57
+ ```ts
58
+ function setTimeoutEx(func, delay): string;
59
+ ```
60
+
61
+ ## Parameters
62
+
63
+ ### func
64
+
65
+ `Function`
66
+
67
+ ### delay
68
+
69
+ `number`
70
+
71
+ ## Returns
72
+
73
+ `string`
20
74
 
21
- Coming Soon!
22
75
 
23
76
  Part of [sdk-js](https://www.npmjs.com/package/@xyo-network/sdk-js)
24
77
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/timer",
3
- "version": "4.13.20",
3
+ "version": "4.13.21",
4
4
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
5
5
  "keywords": [
6
6
  "xylabs",
@@ -43,7 +43,7 @@
43
43
  "src"
44
44
  ],
45
45
  "dependencies": {
46
- "@xylabs/assert": "^4.13.20"
46
+ "@xylabs/assert": "^4.13.21"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/node": "^24.0.14",