aureooms/js-code

View on GitHub
js/src/mod.js

Summary

Maintainability
A
1 hr
Test Coverage
exports.mod = function ( lhs , rhs ) {
    this.lhs = lhs ;
    this.rhs = rhs ;
} ;

exports.mod.prototype.toString = function ( ) {
    return "(" + this.lhs.toString( ) + ") % (" + this.rhs.toString( ) + ")" ;
} ;