()
| 7145 | } |
| 7146 | } |
| 7147 | function consoleLog() { |
| 7148 | var args = []; |
| 7149 | |
| 7150 | for (var _i = 0; _i < arguments.length; _i++) { |
| 7151 | args[_i] = arguments[_i]; |
| 7152 | } |
| 7153 | |
| 7154 | if ("development" !== 'production') { |
| 7155 | /* eslint-disable no-console */ |
| 7156 | if (typeof console !== 'undefined' && console.log) { |
| 7157 | console.log.apply(console, args); |
| 7158 | } |
| 7159 | /* eslint-enable no-console */ |
| 7160 | |
| 7161 | } |
| 7162 | } |
| 7163 | /** |
| 7164 | * If in __DEV__ environment, get console printable message for users hint. |
| 7165 | * Parameters are separated by ' '. |
no outgoing calls
no test coverage detected
searching dependent graphs…