mirror of
https://github.com/photonstorm/phaser
synced 2025-02-18 06:58:30 +00:00
10 lines
154 B
JavaScript
10 lines
154 B
JavaScript
|
/**
|
||
|
* Selects the lighter of the backdrop and source colors.
|
||
|
*/
|
||
|
var Lighten = function (a, b)
|
||
|
{
|
||
|
return (b > a) ? b : a;
|
||
|
};
|
||
|
|
||
|
module.exports = Lighten;
|