felixge / felixge/node-sandboxed-module
instanceof Function broken inside of sandboxed module
Abierto
- Lenguaje dominante
- JavaScript
- Estrellas
- 343
- Forks
- 41
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
I have a sandboxed module with the following contents:
``` js
var foo = function () {}
console.log(1, typeof foo);
console.log(2, foo instanceof Function);
// => 1 'function'
// => 2 false
```
`foo instanceof Function` should return `true`, but it returns `false`.
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.