aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/test/reg-exp/escape.js
blob: 9478f52342b8870748db90da887c8010fc6e37aa (plain)
1
2
3
4
5
6
"use strict";

module.exports = function (t, a) {
	var str = "(?:^te|er)s{2}t\\[raz]+$";
	a(RegExp("^" + t(str) + "$").test(str), true);
};