Initialize with tsdx

This commit is contained in:
2020-08-12 14:08:39 +05:30
commit 11ea3faeff
9 changed files with 6213 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
export const sum = (a: number, b: number) => {
if ('development' === process.env.NODE_ENV) {
console.log('boop');
}
return a + b;
};