TypeScript/tests/baselines/reference/regexMatchAll.js
2019-04-25 14:11:50 -07:00

10 lines
287 B
TypeScript

//// [regexMatchAll.ts]
const matches = /\w/g[Symbol.matchAll]("matchAll");
const array = [...matches];
const { index, input } = array[0];
//// [regexMatchAll.js]
const matches = /\w/g[Symbol.matchAll]("matchAll");
const array = [...matches];
const { index, input } = array[0];