export const voidFunc = () => { // do nothing }; export const voidAsyncFunc = async () => { // do nothing }; export const emptyObjectFunc = () => { return {}; }; export const emptyArrayFunc = () => { return []; };