convert var to const

since `PI_OVER_180` cannot change ...
This commit is contained in:
Hamid Bluri 2023-07-02 15:51:25 +03:30 committed by GitHub
parent a8959e1b40
commit 09fd0de63d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@
*
* @license
*/
var PI_OVER_180 = Math.PI / 180;
const PI_OVER_180 = Math.PI / 180;
/**
* @namespace Konva
*/