aboutsummaryrefslogtreecommitdiff
path: root/src/lib/notification-i18n-loader.js
blob: a61755c800ee97f225815b2318dd97d876355cd3 (plain)
1
2
3
4
5
6
7
8
9
// This somewhat mysterious module
module.exports = function(source) {
  var object = JSON.parse(source)
  var smol = {
    notifications: object.notifications || {}
  }

  return JSON.stringify(smol)
}