- starting project list...
- ordering some functions
- fix error TS2339
quasar.extensions.json was the problem !
inside had:
{
"@quasar/typescript": {
"webpack": "plugin",
"rename": true
}
}
This commit is contained in:
@@ -29,7 +29,7 @@ export function debounce<F extends Procedure>(
|
||||
|
||||
const shouldCallNow = options.isImmediate && timeoutId === undefined
|
||||
|
||||
if (timeoutId !== undefined) {
|
||||
if (!!timeoutId) {
|
||||
clearTimeout(timeoutId)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user