JSMonk/hegel
Ver no GitHubRelational operations should inferred for string as well
Open
#333 aberto em 17 de abr. de 2021
help wanted
Métricas do repositório
- Stars
- (2.047 stars)
- Métricas de merge de PR
- (Nenhuma PRs mesclada em 30d)
Description
function le(a, b) {
return a <= b
}
Actual:
a and b infer as $StrictUnion<bigint | number>
Expected
a and b infer as $StrictUnion<bigint | number | string>