github.com/resonatecoop/id@v1.1.0-43/frontend/src/lib/title.js (about)

     1  const separator = ' • '
     2  const title = process.env.APP_TITLE || 'Resonate ID'
     3  
     4  module.exports = (viewName) => {
     5    if (viewName === title) return title
     6    return viewName ? viewName + separator + title : title
     7  }