mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 04:17:33 -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
|