blob: 5477757994cfeb4d634fcc8fe5703110322f686a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/env node
'use strict';
var through = require('through2');
var fuzzer = require('fuzzer');
fuzzer.seed(0);
module.exports = function() {
return through.obj(function(chunk, env, callback) {
var json = JSON.parse(chunk.toString());
json.layers.map(function(value) {
var mutator = fuzzer.mutate.object(value);
return mutator();
});
var data = JSON.stringify(json);
this.push(data);
callback();
});
};
if (!module.parent) process.stdin.pipe(module.exports()).pipe(process.stdout);
|