9 lines
126 B
JavaScript
9 lines
126 B
JavaScript
/**
|
|
* Inverter.
|
|
* Easier to read than "!"
|
|
* @param {any} a
|
|
* @returns
|
|
*/
|
|
export const not = a => !a
|
|
|
|
export default not |