UNPKG

ua2os

Version:

Detect the OS from a User-Agent string.

9 lines (8 loc) 176 B
/* IMPORT */ import Re from './re.js'; /* MAIN */ const ua2os = (ua) => { return Re.order.find(os => Re[os].find(re => re.test(ua))); }; /* EXPORT */ export default ua2os;