Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing commas so that "use strict" works (#161)
Co-Authored-By: jpaddison3 <[email protected]> When we experimented with adding "use strict" to our codebase in a way that accidentally covered all of `node_modules`, this file crashed on start because `crypto` is an assignment to an undeclared variable. It's an undeclared variable because the preceding line is missing a comma. Fix that, so that this file can pass `use strict`. Co-authored-by: Frederik Prijck <[email protected]>
- Loading branch information