chore(release): @nativescript/core@8.0.0

This commit is contained in:
Nathan Walker
2021-03-31 14:22:27 -07:00
parent b72c4a3237
commit 75b59ecdbf
6 changed files with 10 additions and 6 deletions

View File

@ -77,7 +77,7 @@ export function setTimeout(callback: Function, milliseconds = 0, ...args): numbe
export function clearTimeout(id: number): void {
const pair = timeoutCallbacks.get(<number>(<any>id));
if (pair) {
if (pair && pair.v) {
pair.v.unregister();
}
}