https://github.com/twbs/bootstrap
Raw File
Tip revision: e44d0475e07113dfb21b555658de6eac53083f98 authored by Jason Golieb on 05 February 2019, 08:31:18 UTC
Move dropdown offset function logic into private function. (#28138)
Tip revision: e44d047
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