2020-05-19 11:43:42 +03:00

10 lines
246 B
JavaScript

'use strict';
const punctuationSets = {};
punctuationSets.mediaFeaturePunctuation = new Set([':', '=', '>', '>=', '<', '<=']);
punctuationSets.nonSpaceCombinators = new Set(['>', '+', '~', '>>>', '/deep/']);
module.exports = punctuationSets;