mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 02:37:25 -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
|