addons/shared/compat.tsblame
View source
b69ab311/**
b69ab312 * Copyright (c) Meta Platforms, Inc. and affiliates.
b69ab313 *
b69ab314 * This source code is licensed under the MIT license found in the
b69ab315 * LICENSE file in the root directory of this source tree.
b69ab316 */
b69ab317
b69ab318// Compatibility utilities
b69ab319
b69ab3110import {AbortController as AbortControllerCompat} from 'node-abort-controller';
b69ab3111
b69ab3112/**
b69ab3113 * Like `new AbortController()` but works on older nodejs < 14.
b69ab3114 */
b69ab3115export function newAbortController(): AbortController {
b69ab3116 if (typeof AbortController === 'function') {
b69ab3117 // Prefer native AbortController.
b69ab3118 return new AbortController();
b69ab3119 } else {
b69ab3120 return new AbortControllerCompat() as AbortController;
b69ab3121 }
b69ab3122}