loremfill/loremfill-chrome

View on GitHub
js/models/matchers/null.js

Summary

Maintainability
A
0 mins
Test Coverage
class NullMatcher {
  supports = attr => {
    return true;
  };

  value = () => {
    return undefined;
  };
}