Skip to content

Instantly share code, notes, and snippets.

@lcoenen
Created November 21, 2019 11:07
Show Gist options
  • Save lcoenen/c9d43c69bad818e40301bc592a37abd1 to your computer and use it in GitHub Desktop.
Save lcoenen/c9d43c69bad818e40301bc592a37abd1 to your computer and use it in GitHub Desktop.
let i = 0;
if(!args[1])
console.warn('Please give a sustainable breathing delay')
setInterval(() => {
i++
console.log(i % 2? 'Breate': 'Release')
}, process.args[1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment