repositories
/
poolifier.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
Switch forEach loop to for of syntax
[poolifier.git]
/
src
/
utils.ts
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
/**
2
* An intentional empty function.
3
*/
4
export const EMPTY_FUNCTION: () => void = () => {
5
/* Intentionally empty */
6
}
7
8
/**
9
* An intentional empty object literal.
10
*/
11
export const EMPTY_LITERAL = {}