tickle/modules/utils/noOp.mjs

8 lines
158 B
JavaScript
Raw Normal View History

2023-06-06 22:45:16 +00:00
//@ts-check
/**
* Does absolutely nothing. Use it when you need a function that does nothing
* at all.
*/
export const noOp = () => {}
export default noOp