add API setup

This commit is contained in:
Sem
2023-05-25 09:27:21 +00:00
parent d180392666
commit db3fde448a
693 changed files with 105277 additions and 1 deletions

11
api/node_modules/async/internal/getIterator.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function (coll) {
return coll[Symbol.iterator] && coll[Symbol.iterator]();
};
module.exports = exports["default"];