mirror of
https://github.com/thangisme/notes.git
synced 2026-06-11 18:09:10 -04:00
21 lines
248 B
JavaScript
21 lines
248 B
JavaScript
|
|
"use strict"
|
||
|
|
|
||
|
|
const punctuationSets = {}
|
||
|
|
|
||
|
|
punctuationSets.mediaFeaturePunctuation = new Set([
|
||
|
|
":",
|
||
|
|
"=",
|
||
|
|
">",
|
||
|
|
">=",
|
||
|
|
"<",
|
||
|
|
"<=",
|
||
|
|
])
|
||
|
|
|
||
|
|
punctuationSets.nonSpaceCombinators = new Set([
|
||
|
|
">",
|
||
|
|
"+",
|
||
|
|
"~",
|
||
|
|
])
|
||
|
|
|
||
|
|
module.exports = punctuationSets
|