UNPKG

@tbowmo/node-red-small-timer

Version:

Small timer node for Node-RED with support for sunrise, sunset etc. timers

8 lines (6 loc) 238 B
export function isNotUndefinedOrNull<T>(input: T): input is NonNullable<T> { return input !== undefined && input !== null } export function capitalizeFirstLetter(str: string) { return str.charAt(0).toUpperCase() + str.slice(1) }