UNPKG

react-orchestra

Version:

A toolbox to build interactive and smart instruments on the web and mobile.

5 lines (3 loc) 153 B
const isDefined = (checkMe, defaultValue) => (typeof checkMe !== 'undefined' && checkMe !== null ? checkMe : defaultValue); export default isDefined;