https://github.com/twbs/bootstrap
Raw File
Tip revision: 58b1be927f43c779377e478df2d119f2ddf956ca authored by XhmikosR on 13 May 2021, 16:22:20 UTC
Release v5.0.1 (#33972)
Tip revision: 58b1be9
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/main/LICENSE)
  */`
}

module.exports = getBanner
back to top