Tracker made in React for keeping track of HP and MP and so on.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
fabula-ultima-react/src/type_check.ts

3 lines
94 B

export function isDefined<T>(i: T | undefined): i is T {
return typeof i !== "undefined"
}