8 lines
151 B
JavaScript
8 lines
151 B
JavaScript
|
import { oneNumber } from './number.js'
|
||
|
|
||
|
export default function create(pmath) {
|
||
|
return pmath('negate', [oneNumber, n => -n])
|
||
|
}
|
||
|
|
||
|
|