You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Segment Iterator objects are analogous to RegExp String Iterator objects, whose iteration results are RegExp matches (i.e., { 0: matchedSubstring, 1: capture1, …, index, input, groups }). Segment data objects currently have segment (analogous to 0), index (analogous to index), and isWordLike (analogous to captures), but are missing input.
The text was updated successfully, but these errors were encountered:
…nt data objects
Improves correspondence with RegExp match objects
* Normative: Remove `string` accessor from %SegmentsPrototype%
* Normative: Add "input" to segment data objects
Fixes#116Fixes#96Closes#117
Segment Iterator objects are analogous to RegExp String Iterator objects, whose iteration results are RegExp matches (i.e.,
{ 0: matchedSubstring, 1: capture1, …, index, input, groups }
). Segment data objects currently havesegment
(analogous to0
),index
(analogous toindex
), andisWordLike
(analogous to captures), but are missinginput
.The text was updated successfully, but these errors were encountered: