mirror of
https://github.com/revoltchat/revite.git
synced 2024-12-25 23:22:06 -05:00
5 lines
222 B
TypeScript
5 lines
222 B
TypeScript
/* eslint-disable @typescript-eslint/no-empty-function */
|
|
export const noop = () => {};
|
|
export const noopAsync = async () => {};
|
|
export const noopTrue = () => true;
|
|
/* eslint-enable @typescript-eslint/no-empty-function */
|