@monkeyscanjump/cloudflare-dyndns
Version:
A robust TypeScript application that automatically updates Cloudflare DNS records when your public IP address changes. Perfect for maintaining consistent domain names for home servers, WireGuard VPN, self-hosted services, or any system with a dynamic IP a
13 lines • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isAxiosError = isAxiosError;
/**
* Type guard for AxiosError
*/
function isAxiosError(error) {
return (typeof error === 'object' &&
error !== null &&
'isAxiosError' in error &&
Boolean(error.isAxiosError));
}
//# sourceMappingURL=types.js.map