UNPKG

okam-build

Version:

The build tool for Okam develop framework

34 lines (30 loc) 488 B
/** * @file Boolean tag attributes * @author sparklewhy@gmail.com */ 'use strict'; const boolAttributes = [ 'allowfullscreen', 'async', 'autofocus', 'autoplay', 'checked', 'controls', 'default', 'defer', 'disabled', 'hidden', 'ismap', 'loop', 'multiple', 'muted', 'open', 'readonly', 'required', 'reversed', 'scoped', 'seamless', 'selected', 'typemustmatch' ]; module.exports = boolAttributes;