Function isGenerator

Checks if value is a Generator i.e Object [Generator] {}, what a GeneratorFunction returns

 const myGeneratorFunction = function* (arg1) { yield arg1 }
 const myGenerator = myGeneratorFunction()
 z.isGenerator(myGenerator) // true

z.isAsyncGenerator(). The AsyncGenerator is NOT included, only pure Generator!