Skip to content

Instantly share code, notes, and snippets.

@anton-rudeshko
Created July 18, 2014 12:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anton-rudeshko/23f9d473ab4af869fd16 to your computer and use it in GitHub Desktop.
Save anton-rudeshko/23f9d473ab4af869fd16 to your computer and use it in GitHub Desktop.
Detect timestamp: seconds vs. millis
var isTimeStamp = (function(MAX_INT) {
return function(number) {
return parseInt(number, 10) > MAX_INT;
};
})(Math.pow(2, 31) - 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment