okam-build
Version:
The build tool for Okam develop framework
34 lines (30 loc) • 488 B
JavaScript
/**
* @file Boolean tag attributes
* @author sparklewhy@gmail.com
*/
;
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;