https://github.com/twbs/bootstrap
Raw File
Tip revision: 6d998a4b8deb4964cee80bb17f2e4869fd125f9d authored by Mark Otto on 28 July 2021, 16:43:43 UTC
Use logical property values for mx, my, px, and py utilities
Tip revision: 6d998a4
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