UNPKG
ava
Version:
latest (8.0.1)
8.0.1
8.0.0
7.0.0
6.4.1
6.4.0
6.3.0
6.2.0
6.1.3
6.1.2
6.1.1
6.1.0
6.0.1
6.0.0
5.3.1
5.3.0
5.2.0
5.1.1
5.1.0
5.0.1
5.0.0
4.3.3
4.3.2
4.3.1
4.3.0
4.2.0
4.1.0
4.0.1
4.0.0
4.0.0-rc.1
4.0.0-alpha.2
4.0.0-alpha.1
3.15.0
3.14.0
3.13.0
3.12.1
3.12.0
3.11.1
3.11.0
3.10.1
3.10.0
3.9.0
3.8.2
3.8.1
3.8.0
3.7.1
3.7.0
3.6.0
3.5.2
3.5.1
3.5.0
3.4.0
3.3.0
3.2.0
3.1.0
3.0.0
3.0.0-beta.2
3.0.0-beta.1
2.4.0
2.3.0
2.2.0
2.1.0
2.0.0
2.0.0-rc.1
2.0.0-beta.2
2.0.0-beta.1
1.4.1
1.4.0
1.3.1
1.3.0
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0-rc.2
1.0.0-rc.1
1.0.0-beta.8
1.0.0-beta.7
1.0.0-beta.6
1.0.0-beta.5.1
1.0.0-beta.5
1.0.0-beta.4
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
0.25.0
0.24.0
0.23.0
0.22.0
0.21.0
0.20.0
0.19.1
0.19.0
0.18.2
0.18.1
0.18.0
0.17.0
0.16.0
0.15.2
0.15.1
0.15.0
0.14.0
0.13.0
0.12.0
0.11.0
0.10.0
0.9.2
0.9.1
0.9.0
0.8.0
0.7.0
0.6.1
0.6.0
0.5.0
0.4.2
0.4.1
0.4.0
0.3.0
0.2.0
0.1.0
0.0.4
0.0.3
Node.js test runner that lets you develop with confidence.
avajs.dev
avajs/ava
ava
/
lib
/
worker
/
utils.js
6 lines
(4 loc)
•
219 B
JavaScript
View Raw
1
2
3
4
5
6
import
process
from
'node:process'
;
import
{isMainThread}
from
'node:worker_threads'
;
export
const
isRunningInThread = isMainThread ===
false
;
export
const
isRunningInChildProcess =
typeof
process.
send
===
'function'
;