Files
thumbsup-theme-flow/theme/helpers/multiply.js
2020-11-16 21:22:51 +01:00

6 lines
108 B
JavaScript

module.exports = (a, b) => {
if (isNaN(a) || isNaN(b)) {
return null;
}
return a * b;
};