const printLog = (showLogs: boolean, ...logs: Array) => { if(__DEV__ && showLogs) { console.log(...logs); } } export { printLog }