tc39 / proposal-bigint-math

Draft specification for supporting BigInts in JavaScript’s Math methods.

Home Page:https://tc39.es/proposal-bigint-math/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

README min() example is broken

tabatkins opened this issue · comments

The README states:

min(0, 1n, -1) evaluates to 0,

But -1 is less than 0, so presumably it means to say it evaluates to -1? Or maybe it should exclude the -1 argument entirely.