"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isArcCommand = isArcCommand; /** * Checks if the character is an A (arc-to) path command. */ function isArcCommand(code) { return (code | 0x20) === 0x61; } //# sourceMappingURL=is-arc-command.js.map