UNPKG

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