()
| 1 | const klassName = function() { |
| 2 | if (arguments.length === 0) { |
| 3 | return '' |
| 4 | } |
| 5 | let cls = Array.prototype.slice.call(arguments) |
| 6 | return cls.filter(l => l).join(' ') |
| 7 | } |
| 8 | |
| 9 | module.exports = klassName |
no outgoing calls
no test coverage detected
searching dependent graphs…