Linting + docs

This commit is contained in:
lain 2020-06-13 11:53:16 +02:00
parent 9bfb3754c1
commit 1e57adf6d4
1 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
// This somewhat mysterious module
module.exports = function(source) {
// 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) {
var object = JSON.parse(source)
var smol = {
notifications: object.notifications || {}