Skip to content
On this page

isFromEU(): boolean

Check whether current browser timezone is from an EU country

WARNING

This method is only applicable in a client-side browser environment

Code Example

js
import { isFromEU } from 'ua-parser-js/helpers';

if(isFromEU()) {
    console.log('Hello, please accept our cookies!');
}

Licensed under the MIT License.