Test Setup Failed
Push — master ( 8ee19e...25278d )
by recca
05:07 queued 46s
created

resources/assets/js/commands/default.js   A

Size

Lines of Code 9

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
nc 1
dl 0
loc 9
rs 10
c 1
b 0
f 0
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A default.js ➔ ??? 0 3 1
1
'use strict';
2
3
import Command from './command';
4
5
export default class Default extends Command {
6
    match(name) {
7
        return ['list', 'help'].includes(name) === false;
8
    }
9
}
10