Skip to content

Instantly share code, notes, and snippets.

@apaleslimghost
Created May 15, 2017 19:40
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/01d112594407770774add5a30f116944 to your computer and use it in GitHub Desktop.
Save apaleslimghost/01d112594407770774add5a30f116944 to your computer and use it in GitHub Desktop.
module.exports = (a, b) => {
const ms = a[1] + b[1];
const div = Math.floor(ms / 1e9);
const rem = ms % 1e9;
return [
a[0] + b[0] + div,
rem
];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment