appease the gods of typescript

pull/2987/head
Richard Harris 6 years ago
parent 5550b5e91d
commit 2ffd31b640

@ -83,7 +83,7 @@ export function exclude_internal_props(props) {
export function once(fn) {
let ran = false;
return function(...args) {
return function(this: any, ...args) {
if (ran) return;
ran = true;
fn.call(this, ...args);

Loading…
Cancel
Save