escape.js 140 B

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