UNPKG

rbt_mssql-pool-party

Version:

Extension of mssql that provides management of multiple connection pools, dsns, retries, and more

9 lines (8 loc) 220 B
/* eslint no-param-reassign: 0 */ export default function addDefaultStats(pool) { // pool is mutated here to add stat properties pool.healCount = 0; pool.promotionCount = 0; pool.retryCount = 0; return pool; }