Files
30-seconds-of-code/snippets/isGeneratorFunction.md
Isabelle Viktoria Maciohsek 27c168ce55 Bake date into snippets
2021-06-13 13:55:00 +03:00

546 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
isGeneratorFunction type,function,intermediate 2020-08-07T15:40:38+03:00 2020-10-20T11:21:07+03:00

Checks if the given argument is a generator function.

  • Use Object.prototype.toString() and Function.prototype.call() and check if the result is '[object GeneratorFunction]'.
const isGeneratorFunction = val =>
  Object.prototype.toString.call(val) === '[object GeneratorFunction]';
isGeneratorFunction(function() {}); // false
isGeneratorFunction(function*() {}); // true