Icard/angular-clarity-master(work.../node_modules/piscina/test/fixtures/sleep.js

13 lines
277 B
JavaScript
Raw Normal View History

2024-07-16 14:55:36 +00:00
'use strict';
const { promisify } = require('util');
const sleep = promisify(setTimeout);
const buf = new Uint32Array(new SharedArrayBuffer(4));
module.exports = async ({ time = 100, a }) => {
await sleep(time);
const ret = Atomics.exchange(buf, 0, a);
return ret;
};