UNPKG

@remix-run/server-runtime

Version:
24 lines (20 loc) 526 B
/** * @remix-run/server-runtime v2.16.8 * * Copyright (c) Remix Software Inc. * * This source code is licensed under the MIT license found in the * LICENSE.md file in the root directory of this source tree. * * @license MIT */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const alreadyWarned = {}; function warnOnce(condition, message) { if (!condition && !alreadyWarned[message]) { alreadyWarned[message] = true; console.warn(message); } } exports.warnOnce = warnOnce;