chore: remove deprecate git.io comments (#2131)

flaker
Nolan Lawson 2022-04-30 12:48:05 -07:00 zatwierdzone przez GitHub
rodzic 7d13f27d6c
commit 58d81a25ad
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -11,7 +11,7 @@ export function replaceEmoji (string, replacer) {
const emojiRegex = getEmojiRegex()
function safeReplacer (substring) {
// emoji regex matches digits and pound sign https://git.io/fpl6J
// emoji regex matches digits and pound sign https://github.com/mathiasbynens/emoji-regex/issues/33#issuecomment-373674579
if (substring.match(NON_EMOJI_REGEX)) {
return substring
}

Wyświetl plik

@ -11,5 +11,5 @@ app.use(sapper.middleware())
app.listen(PORT, () => console.log(`listening on port ${PORT}`))
// Handle SIGINT (source: https://git.io/vhJgF)
// Handle SIGINT (source: https://github.com/pouchdb/pouchdb-server/blob/fdc6ba7/packages/node_modules/pouchdb-server/lib/index.js#L304-L306)
process.on('SIGINT', () => process.exit(0))