Blob Blame History Raw
import test from 'ava';
import fn from './';

test(t => {
	t.is(
		fn('\\ ^ $ * + ? . ( ) | { } [ ]'),
		'\\\\ \\^ \\$ \\* \\+ \\? \\. \\( \\) \\| \\{ \\} \\[ \\]'
	);
});