Initial commit

This commit is contained in:
2020-11-16 21:22:51 +01:00
commit 25d5bd4322
66 changed files with 8393 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
module.exports = (a, b) => {
if (isNaN(a) || isNaN(b)) {
return null;
}
return a * b;
};