UNPKG

html-element-map

Version:

Look up HTML tag names via HTML Element constructors, and vice versa.

12 lines (9 loc) 258 B
'use strict'; var byTag = require('./byTag'); var byConstructor = require('./byConstructor'); var byConstructorName = require('./byConstructorName'); module.exports = { byConstructor: byConstructor, byConstructorName: byConstructorName, byTag: byTag };