Fix mime module

This commit is contained in:
Christoph Diehl 2018-04-06 22:50:48 +02:00
parent 58a6a1ce78
commit c9e1987eb1
No known key found for this signature in database
GPG Key ID: 799CE5B68FEF404A
1 changed files with 5 additions and 5 deletions

View File

@ -8,11 +8,11 @@ const random = require('../random')
class mime extends make {
static any () {
return random.pick([
this.standard,
this.xml,
this.image,
this.media,
this.form
mime.standard,
mime.xml,
mime.image,
mime.media,
mime.form
])
}