Currently it uses `assert(typeof ... === 'number')` but it would be more expressive in case of failure to use `assert.strictEqual(typeof ..., 'number')`.
Currently it uses
assert(typeof ... === 'number')but it would be more expressive in case of failure to useassert.strictEqual(typeof ..., 'number').