Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/wwwroot/mifepriston.org/node_modules/rxjs/util/ |
Upload File : |
{"version":3,"file":"Set.js","sourceRoot":"","sources":["../../src/util/Set.ts"],"names":[],"mappings":";AAAA,qBAAqB,QAAQ,CAAC,CAAA;AAa9B;IACE,2DAA2D;IAC3D,kDAAkD;IAClD,MAAM,CAAC;QAAA;YACG,YAAO,GAAQ,EAAE,CAAC;QAmB5B,CAAC;QAjBC,wBAAG,GAAH,UAAI,KAAQ;YACV,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gBACrB,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YAC3B,CAAC;QACH,CAAC;QAED,wBAAG,GAAH,UAAI,KAAQ;YACV,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC;QAC5C,CAAC;QAED,sBAAI,4BAAI;iBAAR;gBACE,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;YAC7B,CAAC;;;WAAA;QAED,0BAAK,GAAL;YACE,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC;QAC1B,CAAC;QACH,iBAAC;IAAD,CAAC,AApBM,GAoBN,CAAC;AACJ,CAAC;AAxBe,sBAAc,iBAwB7B,CAAA;AAEY,WAAG,GAAa,WAAI,CAAC,GAAG,IAAI,cAAc,EAAE,CAAC","sourcesContent":["import { root } from './root';\n\nexport interface ISetCtor {\n new<T>(): ISet<T>;\n}\n\nexport interface ISet<T> {\n add(value: T): void;\n has(value: T): boolean;\n size: number;\n clear(): void;\n}\n\nexport function minimalSetImpl<T>(): ISetCtor {\n // THIS IS NOT a full impl of Set, this is just the minimum\n // bits of functionality we need for this library.\n return class MinimalSet<T> implements ISet<T> {\n private _values: T[] = [];\n\n add(value: T): void {\n if (!this.has(value)) {\n this._values.push(value);\n }\n }\n\n has(value: T): boolean {\n return this._values.indexOf(value) !== -1;\n }\n\n get size(): number {\n return this._values.length;\n }\n\n clear(): void {\n this._values.length = 0;\n }\n };\n}\n\nexport const Set: ISetCtor = root.Set || minimalSetImpl();"]}