
Dancer::Plugin::Browser::Detect - easy to have info of the browser.

use Dancer;
use Dancer::Plugin::Browser::Detect;
get '/' => sub {
my $browser = browser_detect();
if ( $browser->windows && $browser->ie && $browser->major() < 6 ) {
return "You have big failed, change your os, browser, and come back late.";
}
};
dance;

Provides an easy to have info of the browser. keyword within your Dancer application.

Natal Ngétal, <hobbestigrou@erakis.im>
