mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 05:03:37 +00:00
6 lines
79 B
JavaScript
6 lines
79 B
JavaScript
|
export default function (a, b) {
|
||
|
|
||
|
return (a[0] * b[1]) - (a[1] * b[0]);
|
||
|
|
||
|
}
|