Commit 952eb13b authored by Robert Knight's avatar Robert Knight

Initialize nullable variable to null rather than undefined.

parent 693761fb
...@@ -14,7 +14,7 @@ let eventsSent = 0; ...@@ -14,7 +14,7 @@ let eventsSent = 0;
const maxEventsToSendPerSession = 5; const maxEventsToSendPerSession = 5;
/** @type {(() => void)|null} */ /** @type {(() => void)|null} */
let removeFrameErrorHandler; let removeFrameErrorHandler = null;
/** /**
* Return the origin which the current script comes from. * Return the origin which the current script comes from.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment