GitHub 6521★

Detect Internet Explorer browser

JavaScript version

const isIE = !!document.documentMode;

TypeScript version

const isIE = !!(document as any).documentMode;
Follow me on and to get more useful contents.