aureooms/js-code

View on GitHub
js/src/irshift.js

Summary

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

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