- 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
268 B
JavaScript
14 lines
268 B
JavaScript
"use strict";
|
|
exports.getDefaultOptions = getDefaultOptions;
|
|
exports.setDefaultOptions = setDefaultOptions;
|
|
|
|
let defaultOptions = {};
|
|
|
|
function getDefaultOptions() {
|
|
return defaultOptions;
|
|
}
|
|
|
|
function setDefaultOptions(newOptions) {
|
|
defaultOptions = newOptions;
|
|
}
|