Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created November 8, 2022 02:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BetterProgramming/fddb1808f225ccfdeff9f791b0c88415 to your computer and use it in GitHub Desktop.
Save BetterProgramming/fddb1808f225ccfdeff9f791b0c88415 to your computer and use it in GitHub Desktop.
type Person = {
birthday: Date;
};
type PersonJson = {
birthday: string;
};
function isPerson(value: Person | PersonJson): value is Person {
return value.birthday instanceof Date;
}
function calcAge(
input: Date | null | undefined | string | Person | PersonJson
): number {
if (!input) {
return 0;
} else if (typeof input === "string") {
return diffInYears(parse(input));
} else if (input instanceof Date) {
return diffInYears(input);
} else if (isPerson(input)) {
return diffInYears(input.birthday);
} else {
return diffInYears(parse(input.birthday));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment