UNPKG

246 BJavaScriptView Raw
1'use strict';
2
3const punctuationSets = {};
4
5punctuationSets.mediaFeaturePunctuation = new Set([':', '=', '>', '>=', '<', '<=']);
6
7punctuationSets.nonSpaceCombinators = new Set(['>', '+', '~', '>>>', '/deep/']);
8
9module.exports = punctuationSets;