Skip to content

Instantly share code, notes, and snippets.

@apaleslimghost
Created May 15, 2017 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apaleslimghost/9caa5a0a33f0a75eee54091c370177ea to your computer and use it in GitHub Desktop.
Save apaleslimghost/9caa5a0a33f0a75eee54091c370177ea to your computer and use it in GitHub Desktop.
module.exports = time => {
const s = Math.floor(time / 1000);
const ms = time % 1000;
return [s, ms * 1e6];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment