From f6eaef94573a119b26995bbf2fd4ce501de0a09f Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Sun, 1 Jan 2017 05:26:10 +0100 Subject: [PATCH] Expose decorate to plugins (#1261) --- lib/utils/plugins.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/utils/plugins.js b/lib/utils/plugins.js index 373bdf64..06c029b8 100644 --- a/lib/utils/plugins.js +++ b/lib/utils/plugins.js @@ -19,6 +19,8 @@ Module._load = function (path) { return notify; case 'hyper/Notification': return Notification; + case 'hyper/decorate': + return decorate; default: return originalLoad.apply(this, arguments); }