mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-28 17:50:56 +01:00
16 lines
225 B
Go
16 lines
225 B
Go
export const voidFunc = () => {
|
|
// do nothing
|
|
};
|
|
|
|
export const voidAsyncFunc = async () => {
|
|
// do nothing
|
|
};
|
|
|
|
export const emptyObjectFunc = () => {
|
|
return {};
|
|
};
|
|
|
|
export const emptyArrayFunc = () => {
|
|
return [];
|
|
};
|