You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
295 B
11 lines
295 B
5 months ago
|
"use strict";
|
||
|
|
||
|
exports.__esModule = true;
|
||
|
exports.warn = warn;
|
||
|
|
||
|
// This module exists only for abstracting logging away and making testing easier
|
||
|
// eslint-disable-next-line import/prefer-default-export
|
||
|
function warn(...args) {
|
||
|
// eslint-disable-next-line no-console
|
||
|
console.warn(...args);
|
||
|
}
|