File size: 346 Bytes
f316cce
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AsyncContext = void 0;
// Stub implementation for AsyncContext
class AsyncContext {
    get(key) {
        return undefined;
    }
    set(key, value) {
        // Do nothing
    }
}
exports.AsyncContext = AsyncContext;
//# sourceMappingURL=async-context.js.map