Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
rx /
ts /
core /
disposables /
Delete
Unzip
Name
Size
Permission
Date
Action
booleandisposable.ts
1.29
KB
-rw-rw-r--
2022-08-30 11:49
compositedisposable.ts
1.56
KB
-rw-rw-r--
2022-08-30 11:49
disposable.ts
1.74
KB
-rw-rw-r--
2022-08-30 11:49
refcountdisposable.ts
1.28
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
module Rx { export interface IDisposable { dispose(): void; } export interface Disposable extends IDisposable { /** Is this value disposed. */ isDisposed?: boolean; } interface DisposableStatic { /** * Provides a set of static methods for creating Disposables. * @param {Function} dispose Action to run during the first call to dispose. The action is guaranteed to be run at most once. */ new (action: () => void): Disposable; /** * Creates a disposable object that invokes the specified action when disposed. * @param {Function} dispose Action to run during the first call to dispose. The action is guaranteed to be run at most once. * @return {Disposable} The disposable object that runs the given action upon disposal. */ create(action: () => void): Disposable; /** * Gets the disposable that does nothing when disposed. */ empty: IDisposable; /** * Validates whether the given object is a disposable * @param {Object} Object to test whether it has a dispose method * @returns {Boolean} true if a disposable object, else false. */ isDisposable(d: any): boolean; } /** * Provides a set of static methods for creating Disposables. * @param {Function} dispose Action to run during the first call to dispose. The action is guaranteed to be run at most once. */ export var Disposable: DisposableStatic; } (function() { var id: Rx.IDisposable; var d : Rx.Disposable; id.dispose(); d.dispose(); d.isDisposed; Rx.Disposable.create(() => {}) Rx.Disposable.empty; Rx.Disposable.isDisposable(d); })