mirror of
https://github.com/photonstorm/phaser
synced 2024-12-24 12:03:36 +00:00
6 lines
116 B
JavaScript
6 lines
116 B
JavaScript
var MinSub = function (value, amount, min)
|
|
{
|
|
return Math.max(value - amount, min);
|
|
};
|
|
|
|
module.exports = MinSub;
|