Repository URL to install this package:
|
Version:
0.6.13 ▾
|
// (c) Copyright 2023 Supertenant Ltd. - all rights reserved.
// See LICENSE file in project root for license terms.
"use strict";const metrics={opened:0,closed:0,dropped:0};exports.incrementOpened=function(){metrics.opened++},exports.incrementClosed=function(){metrics.closed++},exports.incrementDropped=function(dropped){null==dropped?metrics.dropped++:metrics.dropped+=dropped},exports.getAndReset=function(){var m=Object.assign({},metrics);return metrics.opened=0,metrics.closed=0,metrics.dropped=0,m};