mirror of https://github.com/jkjoy/sunpeiwen.git
10 lines
366 B
JavaScript
10 lines
366 B
JavaScript
function emitWarning() {
|
|
if (!emitWarning.warned) {
|
|
emitWarning.warned = true;
|
|
console.log(
|
|
'Deprecation (warning): Using file extension in specifier is deprecated, use "highlight.js/lib/languages/gauss" instead of "highlight.js/lib/languages/gauss.js"'
|
|
);
|
|
}
|
|
}
|
|
emitWarning();
|
|
module.exports = require('./gauss.js'); |