UNPKG

webdav-js

Version:

WebDAV functionality intended for use as a bookmarklet or to make a simple webserver an interactive WebDAV environment.

12 lines (9 loc) 205 B
export const supportsFocusWithin: boolean = (() => { try { document.querySelector(':focus-within'); return true; } catch (e) { return false; } })(); export default supportsFocusWithin;