Properly integrate standard JS tools for JS and TS code
[poolifier.git] / src / utils.ts
CommitLineData
6e9d10db
JB
1/**
2 * An intentional empty function.
3 */
4export const EMPTY_FUNCTION: () => void = () => {
5 /* Intentionally empty */
6}
78cea37e
JB
7
8/**
9 * An intentional empty object literal.
10 */
11export const EMPTY_LITERAL = {}