UNPKG

serwist

Version:

A Swiss Army knife for service workers.

17 lines (15 loc) 394 B
/* 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. */ /** * 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(() => {}); }