Files
NodeBB/src/als.js
Barış Soner Uşaklı 9410a73aaa feat: als (#9749)
* feat: als

* fix: up test timeout

* fix: don't overwrite caller if it already exists

* fix: up test timeout for psql
2021-08-30 10:28:30 -04:00

8 lines
158 B
JavaScript

'use strict';
const { AsyncLocalStorage } = require('async_hooks');
const asyncLocalStorage = new AsyncLocalStorage();
module.exports = asyncLocalStorage;