- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
14 lines
256 B
JavaScript
14 lines
256 B
JavaScript
/* eslint-disable no-console */
|
|
'use strict'
|
|
|
|
let printed = {}
|
|
|
|
module.exports = function warnOnce(message) {
|
|
if (printed[message]) return
|
|
printed[message] = true
|
|
|
|
if (typeof console !== 'undefined' && console.warn) {
|
|
console.warn(message)
|
|
}
|
|
}
|