Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Function.prototype.isGenerator()

No estándar
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

El método isGenerator() determina si una función es un generador.

Sintaxis

fun.isGenerator()

Descripción

El método isGenerator() determina si una función es un generador. Fue parte de una propuesta del proceso de estandarización "Harmony", pero no fue incluido en la especificación ECMAScript 6.

Ejemplos

function f() {}

function* g() {
  yield 42;
}

console.log('f.isGenerator() = ' + f.isGenerator()); // f.isGenerator() = false
console.log('g.isGenerator() = ' + g.isGenerator()); // g.isGenerator() = true 

Especificaciones

No es parte de ninguna especificación. Implementado en JavaScript 1.8.6.

Compatibilidad con navegadores

Característica Chrome Firefox (Gecko) Internet Explorer Opera Safari
Soporte básico No support 5.0 (5.0) No support No support No support
Característica Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Soporte básico No support No support 5.0 (5.0) No support No support No support

Ver también

Etiquetas y colaboradores del documento

 Colaboradores en esta página: RiazaValverde
 Última actualización por: RiazaValverde,