https://github.com/twbs/bootstrap
Raw File
Tip revision: 7a6da5e3e7ad7c749dde806546a35d4d4259d965 authored by XhmikosR on 12 May 2020, 16:53:07 UTC
Dist
Tip revision: 7a6da5e
banner.js
'use strict'

const pkg = require('../package.json')
const year = new Date().getFullYear()

function getBanner(pluginFilename) {
  return `/*!
  * Bootstrap${pluginFilename ? ` ${pluginFilename}` : ''} v${pkg.version} (${pkg.homepage})
  * Copyright 2011-${year} ${pkg.author}
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  */`
}

module.exports = getBanner
back to top