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.

23 lines (22 loc) 450 B
var options = { open: false, node: null }; 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 == 'boolean') { options = { open: options }; } if (typeof options != 'object') { options = {}; } return options; }