https://github.com/twbs/bootstrap
Raw File
Tip revision: c877cefcef18d6a60c5eaec8df469933e64e212a authored by XhmikosR on 24 March 2023, 14:30:16 UTC
Release v5.3.0-alpha2 (#38244)
Tip revision: c877cef
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