dispose.js 134 B

1234
  1. export function isDisposable(thing) {
  2. return !!thing && typeof thing.dispose === 'function';
  3. }
  4. //# sourceMappingURL=dispose.js.map