views-morph
Version:
Views language morpher
25 lines (23 loc) • 410 B
JavaScript
const blacklist = [
'appregion',
'backgroundimage',
'backgroundsize',
'classname',
'clippath',
'cursor',
'fontweight',
'goto',
'isdisabled',
'onclick',
'onsubmit',
'overflow',
'overflowx',
'overflowy',
'pagebreakinside',
'shadowspread',
'teleportto',
'texttransform',
'userselect',
]
export default (node, parent, state) =>
!blacklist.includes(node.name.toLowerCase())