Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.withResolvers = void 0;
|
||||
const withResolvers = function () {
|
||||
let resolve;
|
||||
let reject;
|
||||
const promise = new Promise((res, rej) => {
|
||||
resolve = res;
|
||||
reject = rej;
|
||||
});
|
||||
return { promise, resolve: resolve, reject: reject };
|
||||
};
|
||||
exports.withResolvers = withResolvers;
|
||||
Reference in New Issue
Block a user