Project: Switch to Prettier for code formatting

This commit is contained in:
Romain Vigier
2026-07-20 13:05:11 +02:00
parent b4ff33e681
commit 1f514c023f
40 changed files with 4511 additions and 4119 deletions
+1 -3
View File
@@ -3,10 +3,8 @@
/**
* Print a message in debug builds.
*
* @param {string} msg Message to print.
*/
export function message(msg) {
if (NTS.metadata['build-type'] === 'debug')
console.log(`[${NTS.metadata.name}] ${msg}`);
if (NTS.metadata["build-type"] === "debug") console.log(`[${NTS.metadata.name}] ${msg}`);
}