mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
Fix comments for Bowser class
This commit is contained in:
parent
4ab0d9dfd3
commit
0c1564f1cd
@ -6,23 +6,24 @@
|
|||||||
*/
|
*/
|
||||||
import Parser from './parser';
|
import Parser from './parser';
|
||||||
|
|
||||||
/*
|
|
||||||
* Ideas
|
|
||||||
* - Cacheable response
|
|
||||||
* */
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Bowser class
|
* Bowser class
|
||||||
|
* Keep it simple as much as it can be
|
||||||
|
* It's supposed to work with collections of Parser instances
|
||||||
|
* rather then solve one-instance problems.
|
||||||
|
* All the one-instance stuff is located in Parser class.
|
||||||
*/
|
*/
|
||||||
class Bowser {
|
class Bowser {
|
||||||
/**
|
/**
|
||||||
* Creates an object that parses UA
|
* Creates a Parser instance instead of Bowser's one
|
||||||
|
*
|
||||||
* @param {String} UA — UserAgent string
|
* @param {String} UA — UserAgent string
|
||||||
* @param {Boolean} [skipParsing=false] — same as skipParsing for Parser
|
* @param {Boolean} [skipParsing=false] — same as skipParsing for Parser
|
||||||
|
* @returns {Parser}
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* const bowser = new Bowser(window.navigator.userAgent);
|
* const bowser = new Bowser(window.navigator.userAgent);
|
||||||
* bowser.getBrowser()
|
* bowser.getResult()
|
||||||
*/
|
*/
|
||||||
constructor(UA, skipParsing=false) {
|
constructor(UA, skipParsing=false) {
|
||||||
if (typeof UA !== 'string') {
|
if (typeof UA !== 'string') {
|
||||||
@ -34,28 +35,6 @@ class Bowser {
|
|||||||
static parse(UA) {
|
static parse(UA) {
|
||||||
return (new Bowser(UA)).getResult();
|
return (new Bowser(UA)).getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Check if the browser is in range or not
|
|
||||||
* @param {Object} range
|
|
||||||
* @returns {Boolean}
|
|
||||||
*/
|
|
||||||
// static inRange(range) {
|
|
||||||
// if (!range) {
|
|
||||||
// throw new Error('Range can not be empty');
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Check if the browser is NOT in range or not
|
|
||||||
* @param {Object} range
|
|
||||||
* @returns {Boolean}
|
|
||||||
*/
|
|
||||||
// static notInRange(range) {}
|
|
||||||
|
|
||||||
|
|
||||||
// static filter(UACollection, range) {}
|
|
||||||
// static inRange(range, UACollection) {}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Bowser;
|
export default Bowser;
|
||||||
|
Loading…
Reference in New Issue
Block a user