mirror of
https://git.rape.pet/ulith/amputoma-fe.git
synced 2025-02-10 15:22:40 +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)
|
||
|
}
|