From 9f6263e53f89dafa6bb3719f47f570ba4acce075 Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Fri, 19 Apr 2024 18:30:57 +1000 Subject: [PATCH] chore: add copyright header --- utils/create_promise_with_resolvers.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/create_promise_with_resolvers.ts b/utils/create_promise_with_resolvers.ts index c0b2ba3..28e452d 100644 --- a/utils/create_promise_with_resolvers.ts +++ b/utils/create_promise_with_resolvers.ts @@ -1,3 +1,5 @@ +// Copyright 2018-2024 the oak authors. All rights reserved. MIT license. + /** Memoisation of the feature detection of `Promise.withResolvers` */ const hasPromiseWithResolvers = "withResolvers" in Promise;