Skip to content

Latest commit

 

History

History
42 lines (38 loc) · 587 Bytes

CHANGELOG.md

File metadata and controls

42 lines (38 loc) · 587 Bytes

v1.0.1

  • Fixed a bug in the fnum() helper function.

v1.0

First release of the project.

  • Created BCNumber class
  • Created fnum() helper function
  • Created tests
  • Created README.md
  • Available methods:
    • add()
    • sub()
    • mul()
    • div()
    • mod()
    • pow()
    • sqrt()
    • equals()
    • greaterThan()
    • greaterThanOrEqual()
    • lessThan()
    • lessThanOrEqual()
    • isZero()
    • isPositive()
    • isNegative()
    • isEven()
    • isOdd()
    • abs()
    • negate()
    • min()
    • max()
    • clamp()
    • addIf()
    • subIf()
    • mulIf()
    • divIf()
    • modIf()
    • powIf()
    • sqrtIf()