D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
public_html
/
wabulk.whatzi.online
/
node_modules
/
thread-stream
/
test
/
Filename :
indexes.test.js
back
Copy
'use strict' const { test } = require('tap') const indexes = require('../lib/indexes') for (const index of Object.keys(indexes)) { test(`${index} is lock free`, function (t) { t.equal(Atomics.isLockFree(indexes[index]), true) t.end() }) }