import { NodeWrapper } from '../node_wrapper'
export class Script extends NodeWrapper {
static get name(){ return 'script' } static get selector(){ return 'script[type="pinstripe"]' } constructor(...args){ super(...args) eval(this.text) }
}
Script.register()