We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This Wiki page is a work in progress
sortArray(arr, { by: 'numeric', computed: { numeric: item => { const matches = item.id.match(/\d+/) if (matches) { return Number(matches[0]) } else { return 0 } } } })