This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* Uses bubble sort to sort JSON Objects by value, | |
* useing the condition defined in the callback | |
* | |
* @category Object | |
* @param {Function} callback sorting condition | |
* @returns {Object} Returns the sorted Object | |
* | |
* |