sets.baseline 744 B

12345678910111213141516
  1. exec(/[\s-:]+/ /*lastIndex=0*/ , "\u0009:-\u000a\u000d ");
  2. ["\u0009:-\u000a\u000d "] /*input="\u0009:-\u000a\u000d ", index=0*/
  3. r.lastIndex=0
  4. RegExp.${_,1,...,9}=["\u0009:-\u000a\u000d ","","","","","","","","",""]
  5. exec(/[\d-z]+/ /*lastIndex=0*/ , "-37z");
  6. ["-37z"] /*input="-37z", index=0*/
  7. r.lastIndex=0
  8. RegExp.${_,1,...,9}=["-37z","","","","","","","","",""]
  9. exec(/[:-\s]+/ /*lastIndex=0*/ , "\u0009:-\u000a\u000d ");
  10. ["\u0009:-\u000a\u000d "] /*input="\u0009:-\u000a\u000d ", index=0*/
  11. r.lastIndex=0
  12. RegExp.${_,1,...,9}=["\u0009:-\u000a\u000d ","","","","","","","","",""]
  13. exec(/[z-\d]+/ /*lastIndex=0*/ , "-37z");
  14. ["-37z"] /*input="-37z", index=0*/
  15. r.lastIndex=0
  16. RegExp.${_,1,...,9}=["-37z","","","","","","","","",""]