UNPKG

242 BJavaScriptView Raw
1'use strict';
2
3module.exports = androidMetaTags;
4
5function androidMetaTags(manifest) {
6 if (manifest.theme_color) {
7 return [
8 '<meta name="theme-color" content="' + manifest.theme_color + '">'
9 ];
10 } else {
11 return [];
12 }
13}