The UnescapeAdapter strips backslashes off the input string.
Ex. The string 'The string contains an unescaped \\\\ backslash".'
will be transformed into 'The string contains an unescaped \\ backslash".'
.
<?php
use Presta\BehatEvaluator\Adapter\UnescapeAdapter;
$evaluate = new UnescapeAdapter();
$value = $evaluate('It\'s time!');
// $value is equal to "It's time!"