it('should work for numbers ending in 4 and above', function () {
    expect(tpl({ a: 4 })).to.equal('4th');
    expect(tpl({ a: 14 })).to.equal('14th');
    expect(tpl({ a: 24 })).to.equal('24th');
  });