UNPKG

rc-js-util

Version:

A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.

12 lines 324 B
export function mapClearingDeleteFromSet(map, key, value) { const values = map.get(key); if (values != null) { values.delete(value); if (values.size === 0) { map.delete(key); } return true; } return false; } //# sourceMappingURL=map-clearing-delete-from-set.js.map