Urara-Blog/node_modules/.pnpm-store/v3/files/3b/76f4b322078f19c391e879f419befee19ec85f00a2c60a273a3a1255a17356655f05010cc855e0148f692ec0681a7c1a76412328a30d3a6d04a8dd3a5b4de1
2022-08-14 01:14:53 +08:00

18 lines
421 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: Promise<any>): void {
// Effective no-op.
void promise.then(() => {});
}