Skip to content

← Browser Name

Jasmine ​

  • Developer: Samsung Electronics (Samsung Group)
  • Platforms: Samsung SHP
  • Type: Browser

These browsers were developed for Samsung devices and platforms:

BrowserDescription
JasmineSamsung's browser for older mobile devices.
Samsung InternetSamsung's current mobile browser.
Tizen BrowserThe browser included with Tizen devices.

User-Agent Examples ​

sh
SAMSUNG-S8000/S8000XXIF3 SHP/VPP/R5 Jasmine/1.0 Nextreaming SMM-MMS/1.2.0 profile/MIDP-2.1 configuration/CLDC-1.1

Code Example ​

js
import { UAParser } from 'ua-parser-js';
import { BrowserName } from 'ua-parser-js/enums';

const parser = new UAParser();
const ua = 'SAMSUNG-S8000/S8000XXIF3 SHP/VPP/R5 Jasmine/1.0 Nextreaming SMM-MMS/1.2.0 profile/MIDP-2.1 configuration/CLDC-1.1';

const browser = parser.setUA(ua).getBrowser();

console.log(browser);
// {name: "Jasmine", version: "1.0", major: "1"}

console.log(browser.is(BrowserName.JASMINE));
// true

UAParser.js v2 is licensed under AGPLv3 or PRO licenses.