revite/src/lib/js.ts

6 lines
222 B
TypeScript
Raw Normal View History

2021-08-05 09:47:00 -04:00
/* eslint-disable @typescript-eslint/no-empty-function */
export const noop = () => {};
export const noopAsync = async () => {};
export const noopTrue = () => true;
2021-08-05 09:47:00 -04:00
/* eslint-enable @typescript-eslint/no-empty-function */