# mapbox-gl-supported
**Repository Path**: mirrors_mapbox/mapbox-gl-supported
## Basic Information
- **Project Name**: mapbox-gl-supported
- **Description**: A library to determine if a browser supports Mapbox GL JS
- **Primary Language**: Unknown
- **License**: BSD-3-Clause
- **Default Branch**: gh-pages
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-09
- **Last Updated**: 2026-03-07
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Mapbox GL JS Supported
This library determines if a browser supports [Mapbox GL JS](http://github.com/mapbox/mapbox-gl-js).
## Testing Your Browser
You may test your browser [here](http://mapbox.github.io/mapbox-gl-supported).
## Using Mapbox GL JS Supported with a `
```
## Using Mapbox GL JS Supported with [Browserify](http://browserify.org/)
```bash
npm install --save @mapbox/mapbox-gl-supported
```
```js
var mapboxglSupported = require('@mapbox/mapbox-gl-supported');
if (mapboxglSupported.supported()) {
...
}
```