rizowski/eslint-watch

View on GitHub
src/commands/clear.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  name: 'clear',
  trigger(options) {
    return options.clear;
  },
  run() {
    return '\u001B[2J\u001B[0;0f';
  },
};