fix: brown paper bag bug referencing the same object literal
[poolifier.git] / src / utils.ts
CommitLineData
6e9d10db
JB
1/**
2 * An intentional empty function.
3 */
4f3c3d89 4export const EMPTY_FUNCTION: () => void = Object.freeze(() => {
6e9d10db 5 /* Intentionally empty */
4f3c3d89 6})