Closed matomesc closed 4 years ago
Process % escape sequence to escape curly braces to prevent faker interpolation.
%
faker
For example:
// Faker interpolation {{name.firstName}} === 'John' // Escape curly braces, no faker interpolation %{%{name.firstName%}%} === '{{name.firstName}}' // Escape % %%{{name.firstName}}%% === '%John%'
Use processors see https://github.com/RobinCK/typeorm-fixtures/issues/117#issuecomment-604546475
Process
%
escape sequence to escape curly braces to preventfaker
interpolation.For example: