mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-06-06 18:52:43 +02:00
Fix:Include Watcher as lib with no dependencies and fix tiny-readdir bug #610
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
/* IMPORT */
|
||||
var signal_1 = require("./signal");
|
||||
/* ABORT CONTROLLER */
|
||||
var AbortController = /** @class */ (function () {
|
||||
function AbortController() {
|
||||
/* VARIABLES */
|
||||
this.signal = new signal_1.default();
|
||||
}
|
||||
/* API */
|
||||
AbortController.prototype.abort = function () {
|
||||
return this.signal.abort();
|
||||
};
|
||||
return AbortController;
|
||||
}());
|
||||
/* EXPORT */
|
||||
module.exports = AbortController;
|
||||
module.exports.default = AbortController;
|
||||
Object.defineProperty(module.exports, "__esModule", { value: true });
|
||||
Reference in New Issue
Block a user