Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

12 lignes
275 B

  1. 'use strict';
  2. var toString = Object.prototype.toString;
  3. module.exports = function (fn) {
  4. if (typeof fn !== 'function') {
  5. return false;
  6. }
  7. return (fn.constructor && fn.constructor.name === 'GeneratorFunction') ||
  8. toString.call(fn) === '[object GeneratorFunction]';
  9. };