2017-03-09 13:16:08 -05:00
|
|
|
"use strict"
|
|
|
|
|
|
|
|
|
|
const punctuationSets = {}
|
|
|
|
|
|
|
|
|
|
punctuationSets.mediaFeaturePunctuation = new Set([
|
|
|
|
|
":",
|
|
|
|
|
"=",
|
|
|
|
|
">",
|
|
|
|
|
">=",
|
|
|
|
|
"<",
|
|
|
|
|
"<=",
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
punctuationSets.nonSpaceCombinators = new Set([
|
|
|
|
|
">",
|
|
|
|
|
"+",
|
|
|
|
|
"~",
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
module.exports = punctuationSets
|