@bignum/template
Advanced tools
Comparing version 0.2.8 to 0.2.9
{ | ||
"name": "@bignum/template", | ||
"version": "0.2.8", | ||
"version": "0.2.9", | ||
"description": "Write formulas with template literals.", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -83,5 +83,5 @@ # @bignum/template | ||
// multiply | ||
f`0.1 * 10`; // 1 | ||
f`0.07 * 100` // 7 | ||
// divide | ||
f`0.6 / 0.2`; // 0.3 | ||
f`0.6 / 0.2`; // 3 | ||
// modulo | ||
@@ -88,0 +88,0 @@ f`0.6 % 0.2`; // 0 |
14978