mirror of
https://github.com/photonstorm/phaser
synced 2024-12-23 11:33:28 +00:00
7 lines
96 B
JavaScript
7 lines
96 B
JavaScript
|
var Difference = function (a, b)
|
||
|
{
|
||
|
return Math.abs(a - b);
|
||
|
};
|
||
|
|
||
|
module.exports = Difference;
|