make-async-generator-function

Function that returns an arbitrary async generator function, or undefined if async generator syntax is unsupported.

Usage no npm install needed!

<script type="module">
  import makeAsyncGeneratorFunction from 'https://cdn.skypack.dev/make-async-generator-function';
</script>

README

make-async-generator-function Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

Returns an arbitrary async generator function, or undefined if async generator syntax is unsupported.

Example

var asyncGeneratorFunctions = require('make-async-generator-function');
assert(typeof asyncGeneratorFunctions === 'function');

var funcs = asyncGeneratorFunctions();
assert(Array.isArray(funcs), true);

Tests

Simply clone the repo, npm install, and run npm test