mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2025-02-24 22:23:03 +01:00
10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
|
// This somewhat mysterious module
|
||
|
module.exports = function(source) {
|
||
|
var object = JSON.parse(source)
|
||
|
var smol = {
|
||
|
notifications: object.notifications || {}
|
||
|
}
|
||
|
|
||
|
return JSON.stringify(smol)
|
||
|
}
|