UNPKG

@antv/util

Version:

<h1 align="center">@antv/util</h1>

8 lines (5 loc) 139 B
const RADIAN = Math.PI / 180; const toRadian = function (degree: number): number { return RADIAN * degree; }; export default toRadian;