Lines Matching full:trailing
18 * leading and/or trailing edge of the `wait` timeout. The `func` is invoked
23 * **Note:** If `leading` and `trailing` options are `true`, `func` is
24 * invoked on the trailing edge of the timeout only if the debounced function
44 * @param {boolean} [options.trailing=true]
45 * Specify invoking on the trailing edge of the timeout.
55 * 'trailing': false
63 * // Cancel the trailing debounced invocation.
76 trailing = true;
86 trailing = 'trailing' in options ? !!options.trailing : trailing;
102 // Start the timer for the trailing edge.
123 // trailing edge, the system time has gone backwards and we're treating
124 // it as the trailing edge, or we've hit the `maxWait` limit.
143 if (trailing && lastArgs) {