|
hace 3 semanas | |
---|---|---|
.. | ||
.github | hace 3 semanas | |
test | hace 3 semanas | |
.eslintrc | hace 3 semanas | |
.nycrc | hace 3 semanas | |
CHANGELOG.md | hace 3 semanas | |
LICENSE | hace 3 semanas | |
README.md | hace 3 semanas | |
index.d.mts | hace 3 semanas | |
index.d.ts | hace 3 semanas | |
index.js | hace 3 semanas | |
index.mjs | hace 3 semanas | |
legacy.js | hace 3 semanas | |
package.json | hace 3 semanas | |
require.mjs | hace 3 semanas | |
tsconfig.json | hace 3 semanas |
A function that returns the normally hidden AsyncFunction
constructor, when available.
npm install --save async-function
const assert = require('assert');
const AsyncFunction = require('async-function')();
const fn = new AsyncFunction('return 1');
assert.equal(fn.toString(), 'async function anonymous(\n) {\nreturn 1\n}');
fn().then(x => {
assert.equal(x, 1);
});
Clone the repo, npm install
, and run npm test