Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101422941
at-rule.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 10, 07:40
Size
471 B
Mime Type
text/x-c++
Expires
Wed, Feb 12, 07:40 (2 d)
Engine
blob
Format
Raw Data
Handle
24159934
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
at-rule.js
View Options
'use strict'
let Container = require('./container')
class AtRule extends Container {
constructor(defaults) {
super(defaults)
this.type = 'atrule'
}
append(...children) {
if (!this.proxyOf.nodes) this.nodes = []
return super.append(...children)
}
prepend(...children) {
if (!this.proxyOf.nodes) this.nodes = []
return super.prepend(...children)
}
}
module.exports = AtRule
AtRule.default = AtRule
Container.registerAtRule(AtRule)
Event Timeline
Log In to Comment