UNPKG

98 BJavaScriptView Raw
1/**
2 * Math / add
3 * Sample module for test
4 */
5
6export let add = (a, b) => {
7 return a + b;
8};
9