@xylabs/timer 4.13.20 → 4.13.22
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/README.md +56 -3
- package/package.json +3 -3
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
|
-
##
|
|
18
|
+
## Reference
|
|
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.
|
|
3
|
+
"version": "4.13.22",
|
|
4
4
|
"description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xylabs",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"src"
|
|
44
44
|
],
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@xylabs/assert": "^4.13.
|
|
46
|
+
"@xylabs/assert": "^4.13.22"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@types/node": "^24.0.
|
|
49
|
+
"@types/node": "^24.0.15",
|
|
50
50
|
"@xylabs/ts-scripts-yarn3": "^7.0.0",
|
|
51
51
|
"@xylabs/tsconfig": "^7.0.0",
|
|
52
52
|
"typescript": "^5.8.3"
|