Add global transformers that apply to all templates generated by a formatter. ```js const formatter = strif.create({ transformers: { trim: s => s.trim() }, active: [ 'trim' ] }); ```