Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. 'use strict';
  2.  
  3. const data = [1487868586378,1487857485296,"2016-06-10T11:15:13.000Z","2008-05-16T11:57:27.000Z","2008-05-16T11:57:27.000Z","2008-05-16T11:57:27.000Z","2008-05-16T11:57:32.000Z","2008-05-16T11:57:31.000Z","2008-05-16T11:57:31.000Z","2008-05-16T11:57:31.000Z","2008-05-16T11:57:31.000Z","2008-05-16T11:57:31.000Z","2008-05-16T11:57:31.000Z","2008-05-16T11:57:31.000Z","2008-05-16T11:57:31.000Z","2008-05-16T11:57:31.000Z","2008-05-16T11:57:27.000Z","2008-05-16T11:57:27.000Z","2008-05-16T11:57:27.000Z","2008-05-16T11:57:27.000Z","2008-05-16T11:57:27.000Z","2008-05-16T11:57:13.000Z","2008-05-16T11:57:13.000Z","2008-05-16T11:57:13.000Z","2008-05-16T11:57:12.000Z","2008-05-16T11:57:12.000Z",1485944753582,1485871296146,1485871143711,1484125236275,1484069406406,"2008-05-16T11:57:41.000Z"];
  4.  
  5. const timsort = require('.');
  6. timsort.sort(data, function (a, b) {
  7. if (a < b) return -1;
  8. else if (a > b) return 1;
  9. return 0
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement