Skip to content

Sort

Helper functions that have to do with sorting.

function sortCaseInsensitive(array): readonly string[];

Defined in: functions/sort.ts:14

Helper function to perform a case insensitive sort. This will copy the provided array and return the sorted copy.

From: https://stackoverflow.com/questions/8996963/how-to-perform-case-insensitive-sorting-array-of-string-in-javascript

Parameter Type
array readonly string[]

readonly string[]