https://github.com/twbs/bootstrap
Raw File
Tip revision: 60ff612061f3a61be1472001f09b8605b37ae0b3 authored by Julien Déramond on 12 October 2022, 18:51:08 UTC
Highlight use cases where :focus-visible is used for BrowserStack testing
Tip revision: 60ff612
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