-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
Description
The method Integer.fromBits does not accept javascript's minus zero the same way other methods do:
Integer(-0)
Integer { high: 0, low: 0 }
Integer.fromNumber(-0)
Integer { high: 0, low: 0 }
Integer.fromString('-0')
Integer { high: 0, low: 0 }
Integer.fromBits(0, -0)
TypeError: Expected second arguement to be a regular 32-bit signed integer
The problem might be caused by the word "arguement" :-)
And thanks a lot for the excellent module 'better-sqlite3'.
Reactions are currently unavailable