Urara-Blog/node_modules/.pnpm-store/v3/files/a0/023dc6634dc774baa32f259b1e729658a80e00a344f6a17900f98b73cfac9c924d3b9352c1f5280794866f0e3ea7c7e9f15187a6bf5be940e2351dd7eecc5d
2022-08-14 01:14:53 +08:00

16 lines
404 B
Text

/*
Copyright 2019 Google LLC
Use of this source code is governed by an MIT-style
license that can be found in the LICENSE file or at
https://opensource.org/licenses/MIT.
*/
import '../_version.js';
/**
* A helper function that prevents a promise from being flagged as unused.
*
* @private
**/
export function dontWaitFor(promise) {
// Effective no-op.
void promise.then(() => { });
}