boennemann/badges

View on GitHub
src/index.js

Summary

Maintainability
A
0 mins
Test Coverage
var Nothing = (function() {
  function Nothing() {}

  Nothing.prototype.doNothing = function() {
    return null;
  };
  return Nothing;
})();