module.exports = RGB = function(red, green, blue){ this.red = red; this.green = green; this.blue = blue; };