Files
codeql-action/node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
291 B
JavaScript
Raw Normal View History

2023-01-18 20:50:03 +00:00
var AsyncGenerator = require("./AsyncGenerator.js");
function _wrapAsyncGenerator(fn) {
return function () {
return new AsyncGenerator(fn.apply(this, arguments));
};
}
module.exports = _wrapAsyncGenerator, module.exports.__esModule = true, module.exports["default"] = module.exports;