UNPKG

@linkedmink/node-route53-dynamic-dns

Version:

Background process that updates AWS Route 53 DNS address records whenever the public IP of the hosting environment changes

6 lines (4 loc) 219 B
import { StringConvertable } from "../types/string.mjs"; export function isStringConvertable(toCheck: unknown): toCheck is StringConvertable { return typeof (toCheck as StringConvertable)?.toString === "function"; }