2022-11-18 21:38:41 +01:00

19 lines
362 B
JavaScript

var options = {
blockUI: true,
moveBackground: true
};
export default options;
/**
* Extend shorthand options.
*
* @param {object} options The options to extend.
* @return {object} The extended options.
*/
export function extendShorthandOptions(options) {
if (typeof options != 'object') {
options = {};
}
return options;
}
;