mirror of
https://github.com/photonstorm/phaser
synced 2025-01-20 09:04:00 +00:00
7 lines
141 B
JavaScript
7 lines
141 B
JavaScript
|
var GetAspectRatio = function (rect)
|
||
|
{
|
||
|
return (rect.height === 0) ? NaN : rect.width / rect.height;
|
||
|
};
|
||
|
|
||
|
module.exports = GetAspectRatio;
|