Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
return vNode.text
}
LanguageSpecification.prototype.attr = function attributes(vNode, attr) {
if (vNode.data) {
const {attrs = {}, props = {}} = vNode.data
if (attrs[attr]) {
return attrs[attr]
}
if (props[attr]) {
return props[attr]
}
}
}
const language = cssauron(new LanguageSpecification())
export default language