Remove comments after jsdoc.

This commit is contained in:
Simon Seyock
2021-06-24 13:58:11 +02:00
committed by Andreas Hocevar
parent 87830c6959
commit 3a73af842d

View File

@@ -77,7 +77,6 @@ class Observable extends EventTarget {
* @return {import("./events.js").EventsKey|Array<import("./events.js").EventsKey>} Event key.
* @protected
*/
// the jsdoc api annotation follows below the class declaration.
onInternal(type, listener) {
if (Array.isArray(type)) {
const len = type.length;
@@ -97,7 +96,6 @@ class Observable extends EventTarget {
* @return {import("./events.js").EventsKey|Array<import("./events.js").EventsKey>} Event key.
* @protected
*/
// the jsdoc api annotation follows below the class declaration.
onceInternal(type, listener) {
let key;
if (Array.isArray(type)) {