import { DEBUG_MODE } from './constants' const log = (...args) => { if (DEBUG_MODE === 'true') { console.info(args) } } export default log