UNPKG

@antv/util

Version:

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

7 lines (6 loc) 146 B
/** * Checks if the character is an A (arc-to) path command. */ export function isArcCommand(code: number) { return (code | 0x20) === 0x61; }