14 lines
207 B
JavaScript
14 lines
207 B
JavaScript
make.types = {
|
|
random: function() {
|
|
return random.item([
|
|
"true",
|
|
"null",
|
|
"(new Object())",
|
|
"undefined",
|
|
"{}",
|
|
"[]",
|
|
"''",
|
|
"function() {}"
|
|
]);
|
|
}
|
|
};
|