A Twitch.tv viewer reward and games system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
301 B

  1. 'use strict';
  2. // source: http://www.w3.org/html/wg/drafts/html/master/syntax.html#void-elements
  3. module.exports = [
  4. 'area'
  5. , 'base'
  6. , 'br'
  7. , 'col'
  8. , 'embed'
  9. , 'hr'
  10. , 'img'
  11. , 'input'
  12. , 'keygen'
  13. , 'link'
  14. , 'menuitem'
  15. , 'meta'
  16. , 'param'
  17. , 'source'
  18. , 'track'
  19. , 'wbr'
  20. ];