Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Latest commit

 

History

History
executable file
·
27 lines (19 loc) · 648 Bytes

readme.md

File metadata and controls

executable file
·
27 lines (19 loc) · 648 Bytes

jortSort

sorting is over as we know it. more info soon.

var jortSort = function( array ) {

  // sort the array
  var originalArray = array.slice(0);
  array.sort( function(a,b){return a - b} );

  // compare to see if it was originally sorted
  for (var i = 0; i < originalArray.length; ++i) {
    if (originalArray[i] !== array[i]) return false;
  }

  return true;
};

literally made with blood and tears