describe('Replace brackets with array items', () => {
    it('Should replace brackets {{0}} in string with array[0]', () => {
      const str = replacer('Hello {{0}},', ['Dimitri']);
      expect(str).toEqual('Hello Dimitri,');
    });