Skip to content
View Sky4CE's full-sized avatar

Block or report Sky4CE

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. RxJS operator which will emit when t... RxJS operator which will emit when the source 'value' has changed or when some 'delay' time has passed since last emit (even if 'value' has not changed)
    1
    import { Observable, MonoTypeOperatorFunction, empty, of } from 'rxjs';
    2
    import { flatMap } from 'rxjs/operators';
    3
    
                  
    4
    /** Will emit when the source 'value' has changed or when some 'delay' time has passed since last emit (even if 'value' has not changed) */
    5
    export function throttleUntilChanged<T>(delay: number): MonoTypeOperatorFunction<T> {
  2. Promise scheduler based on RxJS sche... Promise scheduler based on RxJS schedulers. Included busyPromise method typically useful along with ngBusy lib
    1
    import { observeOn } from "rxjs/operators";
    2
    import { of, SchedulerLike, queueScheduler, asyncScheduler, asapScheduler, animationFrameScheduler } from 'rxjs';
    3
    
                  
    4
    export enum ScheduleType {
    5
    	Queue,