Icard/angular-clarity-master(work.../node_modules/piscina/test/fixtures/send-buffer-then-get-length.js

19 lines
317 B
JavaScript

'use strict';
const Piscina = require('../../dist/src');
let time;
module.exports = {
send: async () => {
const data = new ArrayBuffer(128);
try {
return Piscina.move(data);
} finally {
setTimeout(() => { time = data.byteLength; }, 1000);
}
},
get: () => {
return time;
}
};