6 lines
240 B
JavaScript
6 lines
240 B
JavaScript
"use strict";
|
|
|
|
export function getHeaderTitle(options, fallback) {
|
|
return typeof options.headerTitle === 'string' ? options.headerTitle : options.title !== undefined ? options.title : fallback;
|
|
}
|
|
//# sourceMappingURL=getHeaderTitle.js.map
|