Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-03-20 | Replace a bunch of `let` with `const` | 1 | -7/+7 | ||
According to https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const > Many style guides (including MDN's) recommend using const over let whenever a variable is not reassigned in its scope. This makes the intent clear that a variable's type (or value, in the case of a primitive) can never change. | |||||
2023-08-10 | Move internal packages to an internal folder | 1 | -0/+101 | ||
For reference: https://go.dev/doc/go1.4#internalpackages |