ember-web-app
Version:
This Ember addon helps you configure and manage the Web App Manifest to create a Progressive Web App
17 lines (13 loc) • 418 B
JavaScript
exports.meta = function meta(attributes) {
return tag('meta', attributes);
};
exports.link = function link(attributes) {
return tag('link', attributes);
};
function tag(name, attributes) {
let attrs = Object.entries(attributes)
.map(([key, value]) => (value ? ` ${key}="${value}"` : ''))
.reduce((accumulator, current) => `${accumulator}${current}`, '');
return `<${name}${attrs}>`;
}
;