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

This commit is contained in:
Nolan Lawson 2022-04-30 12:48:05 -07:00 committed by GitHub
parent 7d13f27d6c
commit 58d81a25ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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
}

View File

@ -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))