https://github.com/devsnek/fuzzy
super duper fuzzer for javascript
https://github.com/devsnek/fuzzy
fuzzing javascript testing
Last synced: 9 months ago
JSON representation
super duper fuzzer for javascript
- Host: GitHub
- URL: https://github.com/devsnek/fuzzy
- Owner: devsnek
- Created: 2017-10-26T02:30:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-03-06T19:00:19.000Z (about 4 years ago)
- Last Synced: 2025-06-11T04:41:35.796Z (9 months ago)
- Topics: fuzzing, javascript, testing
- Language: JavaScript
- Size: 29.3 KB
- Stars: 10
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# fuzzy
```javascript
const { fuzzFunction } = require('@devsnek/fuzzy');
const errors = fuzzFunction(fs.writeFileSync);
```
```javascript
const random = require('@devsnek/fuzzy');
console.log(random());
/*
Set {
Promise { undefined },
false,
[AsyncFunction: af],
Float64Array [ 32, 4, 21, 92, 27, 103, 43, 123, 40, 115 ],
'蔛匫㪯�쌽抋㕗ᾒ弭',
WeakSet {} }
*/
```
You can also import all the individual methods
```javascript
const { object } = require('@devsnek/fuzzy');
console.log(object());
/*
{ '䛺늙휠�ꇆ䣽ㄱ慰뜐': [Getter/Setter],
'鷭랦�㲠幘聩䖾젶쁟': { '콨撐Ὗ쩌㒌쑁顠낓ꞛ䃔': [Getter/Setter] },
'軁뢧ꉷ偉胕顴䩈ꐃ뮲鯬': Set { undefined } }
*/
```