Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
thetarnav authored and github-actions[bot] committed Oct 27, 2024
1 parent c60852d commit d6c619b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/scheduled/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export const throttle: ScheduleCallback = (callback, wait) => {
export const scheduleIdle: ScheduleCallback = isServer
? () => Object.assign(() => void 0, { clear: () => void 0 })
: // requestIdleCallback is not supported in Safari
(typeof requestIdleCallback !== 'undefined')
typeof requestIdleCallback !== "undefined"
? (callback, maxWait) => {
let isDeferred = false,
id: ReturnType<typeof requestIdleCallback>,
Expand Down

0 comments on commit d6c619b

Please sign in to comment.