Case insensitive sorting in Ember CLI SOLVED

How do you enable case insensitive sorting? Is it native or do we need an Ember CLI add-on for natural sort?

My not sorting correctly code:

https://github.com/broerse/ember-cli-blog/blob/f5439c5a528f0b22660db39a5f49a7f04962b331/app/controllers/authors.js

Example: Myapp

I found this stackoverflow answer but don’t know how to overwrite orderBy yet.

This seems to work:

sortFunction: function(i1,i2) {
    console.log(i1,i2);
    return 1;
  },

Solved with sortFunction:

https://github.com/broerse/ember-cli-blog/blob/master/app/controllers/authors.js