- 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
12 lines
254 B
JavaScript
12 lines
254 B
JavaScript
/* eslint no-negated-condition: 0, no-new-func: 0 */
|
|
|
|
'use strict';
|
|
|
|
if (typeof self !== 'undefined') {
|
|
module.exports = self;
|
|
} else if (typeof window !== 'undefined') {
|
|
module.exports = window;
|
|
} else {
|
|
module.exports = Function('return this')();
|
|
}
|