Home Manual Reference Source Test Repository

src/utils/whole.js



export function whole ( sort ) {

	return function ( compare, array ) {

		sort( compare, array, 0, array.length );

	};

}