summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/six-speed/tests/regex-u.es6
blob: 828cbbcac7953b5edafe82d66216359a8339f02e (plain)
1
2
3
4
5
6
function fn() {
  return '𠮷'.match(/^.$/u);
}

assertEqual(!!fn(), true);
test(fn);