Support those who prefer no left padding

This commit is contained in:
Luke Heerman 2024-10-10 15:43:13 -04:00
parent 4cc019f038
commit f87f279198
2 changed files with 14 additions and 0 deletions

View file

@ -1023,6 +1023,7 @@ function _composeOp(a, b, func) {
div: [numeralArgs((a, b) => a / b)],
mod: [numeralArgs(_mod)],
pow: [numeralArgs(Math.pow)],
log2: [numeralArgs(Math.log2)],
band: [numeralArgs((a, b) => a & b)],
bor: [numeralArgs((a, b) => a | b)],
bxor: [numeralArgs((a, b) => a ^ b)],