@aikidosec/firewall
Version:
Zen by Aikido is an embedded Application Firewall that autonomously protects Node.js apps against common and critical attacks, provides rate limiting, detects malicious traffic (including bots), and more.
11 lines (10 loc) • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ReportingAPIThatThrows = void 0;
class ReportingAPIThatThrows {
// oxlint-disable-next-line require-await
async report(token, event, timeoutInMS) {
throw new Error("Failed to report event");
}
}
exports.ReportingAPIThatThrows = ReportingAPIThatThrows;