guidesmiths/rascal

View on GitHub
lib/counters/stub.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module.exports = function () {
  return {
    incrementAndGet(key, next) {
      next(null, 0);
    },
  };
};