Update README.md

This commit is contained in:
posidron 2018-09-18 18:22:17 +02:00
parent adb694e724
commit 7278aed4d3
No known key found for this signature in database
GPG Key ID: 799CE5B68FEF404A
1 changed files with 13 additions and 6 deletions

View File

@ -26,6 +26,7 @@ Octo's future aims to be a stable, well-tested and well-documented standard libr
- [Development](#development) - [Development](#development)
- [Testing](#testing) - [Testing](#testing)
- [API Documentation](#api-documentation) - [API Documentation](#api-documentation)
- [What do the developers say?](#what-do-the-developers-say)
### Playbook ### Playbook
@ -38,18 +39,18 @@ yarn add @mozillasecurity/octo
``` ```
```js ```js
const {random, make} = require('@mozillasecurity/octo') const { random, make } = require("@mozillasecurity/octo");
random.init() random.init();
// Common Operations // Common Operations
make.number.any() make.number.any();
make.text.any() make.text.any();
// WebCrypto // WebCrypto
make.crypto.randomAlgorithm() make.crypto.randomAlgorithm();
// WebGL // WebGL
make.webgl.randomSamplerParameter() make.webgl.randomSamplerParameter();
``` ```
Take a look into the API documentation for further use cases. Take a look into the API documentation for further use cases.
@ -88,3 +89,9 @@ or
``` ```
yarn docs yarn docs
``` ```
### What do the developers say?
- [Divide-by-zero in [@webrtc::I420Buffer::CropAndScaleFrom]](https://bugzilla.mozilla.org/show_bug.cgi?id=1490700#c1)
> Impressive that the fuzzer found such a high multiple of 65536. I'd expect it to start with common edge cases like -1, 0, 1, etc.