16 lines
276 B
JavaScript
16 lines
276 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const Container = require('./container');
|
||
|
const Node = require('./node');
|
||
|
|
||
|
class UnicodeRange extends Node {
|
||
|
constructor (opts) {
|
||
|
super(opts);
|
||
|
this.type = 'unicode-range';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Container.registerWalker(UnicodeRange);
|
||
|
|
||
|
module.exports = UnicodeRange;
|