phonon
Version:
Phonon is an open source HTML, CSS and JavaScript agnostic framework that allows to create a website or a hybrid Web app.
13 lines (10 loc) • 339 B
JavaScript
const pkg = require('../../package.json');
const year = new Date().getFullYear();
function getBanner(name = 'Phonon') {
return `/*!
* ${name} v${pkg.version} (${pkg.homepage})
* Copyright 2015-${year} ${pkg.author}
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/`;
}
module.exports = getBanner;