mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-04-28 08:10:36 +00:00
6 lines
222 B
TypeScript
6 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 */
|