remove node_modules and .gitignore them

This commit is contained in:
2023-11-24 14:40:32 -05:00
parent 5f6e638903
commit a74d7b91b8
8963 changed files with 1 additions and 874175 deletions
-44
View File
@@ -1,44 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Mutex = void 0;
var SharedTimedMutex_1 = require("./SharedTimedMutex");
/**
* Mutex.
*
* @author Jeongho Nam - https://github.com/samchon
*/
var Mutex = /** @class */ (function () {
/* ---------------------------------------------------------
CONSTRUCTOR
--------------------------------------------------------- */
/**
* Default Constructor.
*/
function Mutex() {
this.mutex_ = new SharedTimedMutex_1.SharedTimedMutex(this);
}
/* ---------------------------------------------------------
LOCK & UNLOCK
--------------------------------------------------------- */
/**
* @inheritDoc
*/
Mutex.prototype.lock = function () {
return this.mutex_.lock();
};
/**
* @inheritDoc
*/
Mutex.prototype.try_lock = function () {
return this.mutex_.try_lock();
};
/**
* @inheritDoc
*/
Mutex.prototype.unlock = function () {
return this.mutex_.unlock();
};
return Mutex;
}());
exports.Mutex = Mutex;
//# sourceMappingURL=Mutex.js.map