@tbowmo/node-red-small-timer
Version:
Small timer node for Node-RED with support for sunrise, sunset etc. timers
11 lines (10 loc) • 371 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isNotUndefinedOrNull = isNotUndefinedOrNull;
exports.capitalizeFirstLetter = capitalizeFirstLetter;
function isNotUndefinedOrNull(input) {
return input !== undefined && input !== null;
}
function capitalizeFirstLetter(str) {
return str.charAt(0).toUpperCase() + str.slice(1);
}