it('should split string by chars', () => {
    const template = Handlebars.compile('{{#each (chars str)}}{{this}} {{/each}}');

    expect(template({str: 'Hello'})).toBe('H e l l o ');
    expect(template({str: 123})).toBe('1 2 3 ');