UNPKG

mmenu-js

Version:

The best javascript plugin for app look-alike on- and off-canvas menus with sliding submenus for your website and webapp.

28 lines (24 loc) 544 B
const options : mmOptionsKeyboardnavigation = { enable: false, enhance: false }; export default options; /** * Extend shorthand options. * * @param {object} options The options to extend. * @return {object} The extended options. */ export function extendShorthandOptions( options : mmOptionsKeyboardnavigation ) : mmOptionsKeyboardnavigation { if ( typeof options == 'boolean' || typeof options == 'string' ) { options = { enable: options }; } if ( typeof options != 'object' ) { options = {}; } return options; };