UNPKG

254 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.decr = decr;
7function decr(key) {
8 var curVal = Number(this.data.get(key));
9 var nextVal = curVal - 1;
10 this.data.set(key, nextVal.toString());
11 return nextVal;
12}
\No newline at end of file