zonkyio/ember-web-app

View on GitHub
lib/tags/android.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
'use strict';
const { meta } = require('../utils/tag-builder');

module.exports = function android(manifest) {
  let tags = [];

  if (manifest.theme_color) {
    tags.push(meta({ name: 'theme-color', content: manifest.theme_color }));
  }

  return tags;
};