Skip to content

Releases: FlorianWendelborn/nullish-math

0.2.0: Add NullishMath.max, NullishMath.min

27 Oct 23:20
59fb267
Compare
Choose a tag to compare
version(0.2.0): Add NullishMath.max, NullishMath.min

also improve tests

0.1.0: Add Comparison Operators and NullishMath.average

18 Jul 13:38
Compare
Choose a tag to compare
  • feature: Add Comparison Operators and NullishMath.average #2
  • chore(internal): Switch to Bun #1

0.0.6: Attempt #2 to Publish Provenance

07 May 13:57
adf819f
Compare
Choose a tag to compare

0.0.5 didn’t publish provenance because:

  1. npm 8 doesn’t seem to support --provenance
  2. github doesn’t install latest npm by default
  3. npm doesn’t fail when passing an unknown parameter to publish (wtf)

0.0.5: Provenance

07 May 13:48
b8faa4f
Compare
Choose a tag to compare

This release adds support for NPM provenance: https://docs.npmjs.com/generating-provenance-statements

0.0.4: Add Keywords to package.json

11 Apr 15:51
3d3fe2d
Compare
Choose a tag to compare

No actual runtime changes, just added some metadata

0.0.3: Type Improvements & Implementation Streamlining

11 Apr 15:48
5d4549e
Compare
Choose a tag to compare

Now detects the following anti-patterns:

nm(null)
nm(undefined)
new NullishMath(null)
new NullishMath(undefined)

These are problematic as they’re likely just hiding a bug as they’re basically a static null and not actually dependent on what gets calculated.

0.0.2: Type Fix for number | null

09 Apr 20:42
7d0e9aa
Compare
Choose a tag to compare
versions/0.0.2

version(0.0.2): Type Fix for number | null

0.0.1: Initial Release

09 Apr 20:33
e10c49d
Compare
Choose a tag to compare
versions/0.0.1

feature: Rename, Support undefined, Forbid Exclusively Nullish Values