From 598f33623e077cf3d4a19ddb5e11e4afe85167d3 Mon Sep 17 00:00:00 2001 From: posidron <1614333+posidron@users.noreply.github.com> Date: Tue, 18 Sep 2018 08:14:22 +0200 Subject: [PATCH] Update README.md --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 23c728f..765fc3f 100644 --- a/README.md +++ b/README.md @@ -38,10 +38,22 @@ yarn add @mozillasecurity/octo ``` ``` -const {random} = require('@mozillasecurity/octo') +const {random, make} = require('@mozillasecurity/octo') random.init() + +# Basic operations +make.number.any() +make.text.any() + +# WebCrypto +make.crypto.randomAlgorithm() + +# WebGL +make.webgl.randomSamplerParameter() ``` +Take a look into the API documentation for further use cases. + ### Usage in the Browser ```