File size: 394 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 |
function emitWarning() {
if (!emitWarning.warned) {
emitWarning.warned = true;
console.log(
'Deprecation (warning): Using file extension in specifier is deprecated, use "highlight.js/lib/languages/actionscript" instead of "highlight.js/lib/languages/actionscript.js"'
);
}
}
emitWarning();
import lang from './actionscript.js';
export default lang; |