TypeScript/tests/cases/compiler/regexMatchAll.ts
2019-04-25 14:11:50 -07:00

6 lines
140 B
TypeScript

// @target: es2020
const matches = /\w/g[Symbol.matchAll]("matchAll");
const array = [...matches];
const { index, input } = array[0];