8 lines
177 B
JavaScript
8 lines
177 B
JavaScript
|
import {promoteBinary, promoteUnary} from './helpers.js'
|
||
|
|
||
|
export const not = promoteUnary('not')
|
||
|
export const and = promoteBinary('and')
|
||
|
export const or = promoteBinary('or')
|
||
|
|
||
|
|