https://github.com/twbs/bootstrap
Raw File
Tip revision: 85f0fff87c43eebdbe9b9143bb409afe687f236a authored by Mark Otto on 07 April 2022, 00:19:17 UTC
add .sticky-thead support
Tip revision: 85f0fff
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