github
312 of 486 branches covered (64.2%)
Branch coverage included in aggregate %.
24 of 81 new or added lines in 5 files covered. (29.63%)
155 existing lines in 5 files now uncovered.2412 of 3300 relevant lines covered (73.09%)
2538.09 hits per line
UNCOV
1
|
/* eslint no-console: 0 */
|
|
UNCOV
2
|
import language from '../helper/language.js'; |
× |
UNCOV
3
|
import logSymbols from 'log-symbols'; |
× |
UNCOV
4
|
import languageKey from '../locales/language-key.js'; |
× |
UNCOV
5
|
|
× |
UNCOV
6
|
const warn = (key: languageKey, ...argList: string[]) => { |
× |
7 |
console.warn(logSymbols.warning + ' ' + language(key, ...argList,),);
|
× |
8 |
}; |
× |
UNCOV
9
|
|
× |
UNCOV
10
|
export default warn; |
× |