@@ -80,7 +80,7 @@ PluginCache.registerCustom = function (key, plugin, mapping)
8080PluginCache . hasCore = function ( key )
8181{
8282 return corePlugins . hasOwnProperty ( key ) ;
83- }
83+ } ;
8484
8585/**
8686 * Checks if the given key is already being used in the custom plugin cache.
@@ -95,7 +95,7 @@ PluginCache.hasCore = function (key)
9595PluginCache . hasCustom = function ( key )
9696{
9797 return customPlugins . hasOwnProperty ( key ) ;
98- }
98+ } ;
9999
100100/**
101101 * Returns the core plugin object from the cache based on the given key.
@@ -110,7 +110,7 @@ PluginCache.hasCustom = function (key)
110110PluginCache . getCore = function ( key )
111111{
112112 return corePlugins [ key ] ;
113- }
113+ } ;
114114
115115/**
116116 * Returns the custom plugin object from the cache based on the given key.
@@ -125,7 +125,7 @@ PluginCache.getCore = function (key)
125125PluginCache . getCustom = function ( key )
126126{
127127 return customPlugins [ key ] ;
128- }
128+ } ;
129129
130130/**
131131 * Returns an object from the custom cache based on the given key that can be instantiated.
@@ -140,7 +140,7 @@ PluginCache.getCustom = function (key)
140140PluginCache . getCustomClass = function ( key )
141141{
142142 return ( customPlugins . hasOwnProperty ( key ) ) ? customPlugins [ key ] . plugin : null ;
143- }
143+ } ;
144144
145145/**
146146 * Removes a core plugin based on the given key.
@@ -156,7 +156,7 @@ PluginCache.remove = function (key)
156156 {
157157 delete corePlugins [ key ] ;
158158 }
159- }
159+ } ;
160160
161161/**
162162 * Removes a custom plugin based on the given key.
@@ -172,6 +172,6 @@ PluginCache.removeCustom = function (key)
172172 {
173173 delete customPlugins [ key ] ;
174174 }
175- }
175+ } ;
176176
177177module . exports = PluginCache ;
0 commit comments