Skip to content

Releases: rayriffy/instant-sort

1.1.4

07 Apr 02:50
5470e1f
Compare
Choose a tag to compare

What's new

  • Bundle size reduction (187B -> 137B gzipped)

1.1.1

17 Feb 16:46
3afee68
Compare
Choose a tag to compare

What's new

  • Bundle size reduction (244B -> 187B gzipped)

1.1.0

27 Jan 08:03
c7d121a
Compare
Choose a tag to compare

What's new

  • CI for unit testing
  • TypeScript: Now you can sort any types that you want!
const res = sort<Omit<IAnime, 'genres'>>([
  {
    name : {
      romaji: 'Toaru Kagaku no Railgun T',
      english: 'A Certain Scientific Railgun T',
      native: 'とある科学の超電磁砲T',
    },
  },
  {
    name : {
      romaji: 'Itai no wa Iya nanode Bougyo-Ryoku ni Kyokufuri Shitai to Omoimasu',
      english: `BOFURI: I Don't Want to Get Hurt, so I'll Max Out My Defense.`,
      native: '痛いのは嫌なので防御力に極振りしたいと思います。'
    },
  },
])

console.log(res) // Should return sorted array

1.0.1

14 Nov 05:09
8815966
Compare
Choose a tag to compare

What's new

  • Nothing because this is an initial release