1
0
mirror of https://github.com/RobinLinus/snapdrop.git synced 2025-05-20 17:40:24 -07:00

Merge branch 'master' of github.com:RobinLinus/snapdrop

This commit is contained in:
RobinLinus 2020-12-22 20:32:55 +01:00
commit 4949338669

View File

@ -1,3 +1,16 @@
var process = require('process')
// Handle SIGINT
process.on('SIGINT', () => {
console.info("SIGINT Received, exiting...")
process.exit(0)
})
// Handle SIGTERM
process.on('SIGTERM', () => {
console.info("SIGTERM Received, exiting...")
process.exit(0)
})
const parser = require('ua-parser-js');
const { uniqueNamesGenerator, animals, colors } = require('unique-names-generator');