master
Raw Download raw file
 1function(context, args) {
 2
 3    // Example function
 4    function subtraction(minuend, subtrahend) {
 5        return minuend - subtrahend;
 6    }
 7
 8    // Export the symbols
 9    return {
10        difference: subtraction
11    };
12}