mirror of
https://github.com/photonstorm/phaser
synced 2025-02-16 22:18:29 +00:00
9 lines
188 B
JavaScript
9 lines
188 B
JavaScript
/**
|
|
* Adds the source and backdrop colors together and returns the value, up to a maximum of 255.
|
|
*/
|
|
var Add = function (a, b)
|
|
{
|
|
return Math.min(255, a + b);
|
|
};
|
|
|
|
module.exports = Add;
|