firefox-devtools / firefox-devtools/vscode-firefox-debug
Removing properties with value 0 or false on map
Abierto
- Lenguaje dominante
- TypeScript
- Estrellas
- 447
- Forks
- 76
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
Version: 2.9.2
Example:
```javascript
const r = [1, 0, 3].map(v => ({
x: 0,
y: v
}));
// expected: [ { x: 0, y: 1 }, { x: 0, y: 0 }, { x: 0, y: 3 } ]
// result: [ { y: 1 }, {}, { y: 3 } ]
```

Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.