How to use the @babel/runtime-corejs2/regenerator.isGeneratorFunction function in @babel/runtime-corejs2

To help you get started, we’ve selected a few @babel/runtime-corejs2 examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github swagger-api / swagger-js / src / specmap / lib / index.js View on Github external
function isGenerator(thing) {
  return regenerator.isGeneratorFunction(thing)
}