tickle/modules/utils/not.mjs

9 lines
126 B
JavaScript
Raw Normal View History

2023-05-09 02:00:53 +00:00
/**
* Inverter.
* Easier to read than "!"
* @param {any} a
* @returns
*/
export const not = a => !a
export default not