UNPKG

@textback/notification-widget

Version:

TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.

18 lines (12 loc) 302 B
'use strict'; function getLocale() { let locale = 'main'; if (document) { locale = document.querySelector('html').getAttribute('lang'); } if (!locale && navigator) { locale = navigator.language; } return locale; } export default getLocale;