feat: add number negate and roll up number functions into one module
This commit is contained in:
parent
f5e2e09aa2
commit
a22add9434
4 changed files with 11 additions and 2 deletions
2
number/all.mjs
Normal file
2
number/all.mjs
Normal file
|
@ -0,0 +1,2 @@
|
|||
export {add} from './add.mjs'
|
||||
export {negate} from './negate.mjs'
|
3
number/negate.mjs
Normal file
3
number/negate.mjs
Normal file
|
@ -0,0 +1,3 @@
|
|||
export const negate = {
|
||||
number: [[], n => -n]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue