Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Dec 2, 2019
1 parent 2d75a4d commit 2dbc566
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,38 @@
# has-typed-arrays
# has-typed-arrays <sup>[![Version Badge][2]][1]</sup>

[![Build Status][3]][4]
[![dependency status][5]][6]
[![dev dependency status][7]][8]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]

[![npm badge][11]][1]

Determine if the JS environment has Typed Arrays.

## Example

```js
var hasTypedArrays = require('has-typed-arrays');

hasTypedArrays() === true; // if the environment has Typed Array support
```

## Tests
Simply clone the repo, `npm install`, and run `npm test`

[1]: https://npmjs.org/package/has-typed-arrays
[2]: http://versionbadg.es/inspect-js/has-typed-arrays.svg
[3]: https://travis-ci.org/inspect-js/has-typed-arrays.svg
[4]: https://travis-ci.org/inspect-js/has-typed-arrays
[5]: https://david-dm.org/inspect-js/has-typed-arrays.svg
[6]: https://david-dm.org/inspect-js/has-typed-arrays
[7]: https://david-dm.org/inspect-js/has-typed-arrays/dev-status.svg
[8]: https://david-dm.org/inspect-js/has-typed-arrays#info=devDependencies
[9]: https://ci.testling.com/inspect-js/has-typed-arrays.png
[10]: https://ci.testling.com/inspect-js/has-typed-arrays
[11]: https://nodei.co/npm/has-typed-arrays.png?downloads=true&stars=true
[license-image]: http://img.shields.io/npm/l/has-typed-arrays.svg
[license-url]: LICENSE
[downloads-image]: http://img.shields.io/npm/dm/has-typed-arrays.svg
[downloads-url]: http://npm-stat.com/charts.html?package=has-typed-arrays

0 comments on commit 2dbc566

Please sign in to comment.