File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,6 @@ const findAllRequiredBehaviorTypes = (
140140 * @returns {EventsFunctionInsideExtensionShortHeader }
141141 */
142142const formatEventFunctionInsideExtensionShortHeader = ( eventFunction ) => {
143- // TODO: Empty fullname => remove.
144143 return {
145144 description : eventFunction . description ,
146145 fullName : eventFunction . fullName ,
@@ -196,7 +195,7 @@ const filterEventsBasedObjects = (objects) =>
196195/** @param {Array<EventsFunction> } eventsFunctions */
197196const filterEventsFunctions = ( eventsFunctions ) =>
198197 eventsFunctions . filter (
199- ( eventFunction ) => ! eventFunction . fullName || eventFunction . private
198+ ( eventFunction ) => eventFunction . fullName && ! eventFunction . private
200199 ) ;
201200
202201( async ( ) => {
You can’t perform that action at this time.
0 commit comments