@aescling what no it doesn’t
(spec text follows)
When BigInt is called with argument value, the following steps are taken:
1. If NewTarget is not undefined, throw a TypeError exception.
2. Let prim be ? ToPrimitive(value, `number`).
3. If Type(prim) is Number, return ? NumberToBigInt(prim).
4. Otherwise, return ? ToBigInt(value).
(end spec text)
ToPrimitive(string, `number`) === string since strings are already primitives; that step does nothing