You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Vince Grassia 471ae4aec2
Update actions to Node 16 (#83)
3 years ago
..
.github/workflows Add get-keyvault-secrets action to repo (#71) 3 years ago
test Add get-keyvault-secrets action to repo (#71) 3 years ago
.eslintignore Add get-keyvault-secrets action to repo (#71) 3 years ago
.eslintrc Add get-keyvault-secrets action to repo (#71) 3 years ago
.nvmrc Add get-keyvault-secrets action to repo (#71) 3 years ago
.nycrc Add get-keyvault-secrets action to repo (#71) 3 years ago
CHANGELOG.md Add get-keyvault-secrets action to repo (#71) 3 years ago
LICENSE Add get-keyvault-secrets action to repo (#71) 3 years ago
README.md Add get-keyvault-secrets action to repo (#71) 3 years ago
index.js Add get-keyvault-secrets action to repo (#71) 3 years ago
package.json Update actions to Node 16 (#83) 3 years ago

README.md

is-generator-function Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

Is this a native generator function?

Example

var isGeneratorFunction = require('is-generator-function');
assert(!isGeneratorFunction(function () {}));
assert(!isGeneratorFunction(null));
assert(isGeneratorFunction(function* () { yield 42; return Infinity; }));

Tests

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