aboutsummaryrefslogtreecommitdiff
path: root/src/lib/notification-i18n-loader.js
blob: d7a4430dc8cf89594b48ffd630ca2cb956848afe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// This somewhat mysterious module will load a json string
// and then extract only the 'notifications' part. This is
// meant to be used to load the partial i18n we need for
// the service worker.
module.exports = function (source) {
  const object = JSON.parse(source)
  const smol = {
    notifications: object.notifications || {}
  }

  return JSON.stringify(smol)
}