UNPKG

react-orchestra

Version:

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

8 lines (7 loc) 130 B
const callIfExists = (fnc, ...args) => { if (fnc) { return fnc(...args); } return null; }; export default callIfExists;