d40a0c7e2b56e633e9b4f31c39c5b0b63dc4336c5d1f24cd2c82c14d95cf166c9526c56a385ffb361979794bbd12adc5982dc860ea74370b052b25be545994 304 B

12345678
  1. define( function() {
  2. "use strict";
  3. // rtagName captures the name from the first start tag in a string of HTML
  4. // https://html.spec.whatwg.org/multipage/syntax.html#tag-open-state
  5. // https://html.spec.whatwg.org/multipage/syntax.html#tag-name-state
  6. return ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i );
  7. } );