forked from Rowland/EG
12 lines
177 B
JavaScript
12 lines
177 B
JavaScript
'use strict';
|
|
|
|
function getUnsupported() {
|
|
try {
|
|
return require("eslint/use-at-your-own-risk");
|
|
} catch {
|
|
return {};
|
|
}
|
|
}
|
|
|
|
exports.getUnsupported = getUnsupported;
|