Skip to content

Instantly share code, notes, and snippets.

@bryanjenningz
Created October 7, 2017 20:24
Show Gist options
  • Save bryanjenningz/3e70e38dc6086b0df2017f6d148d0af1 to your computer and use it in GitHub Desktop.
Save bryanjenningz/3e70e38dc6086b0df2017f6d148d0af1 to your computer and use it in GitHub Desktop.
const sleep = time => new Promise(resolve => setTimeout(resolve, time));
(async () => {
const recorder = await recordAudio();
recorder.start();
await sleep(3000);
const audio = await recorder.stop();
audio.play();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment