From c9e1987eb16c46d879b443c461bf9b5a44e2d000 Mon Sep 17 00:00:00 2001 From: Christoph Diehl <1614333+posidron@users.noreply.github.com> Date: Fri, 6 Apr 2018 22:50:48 +0200 Subject: [PATCH] Fix mime module --- lib/make/mime.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/make/mime.js b/lib/make/mime.js index 1a7b28a..2d8e909 100644 --- a/lib/make/mime.js +++ b/lib/make/mime.js @@ -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 ]) }