You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
ecommerce_docker/frontend_server/node_modules/postcss-values-parser/lib/unicode-range.js

15 lines
276 B

'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;