mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
The history of updates to this test got messed up so just squashing into one commit. Some possible regressions have been accepted, but the query is strangely opinionated so it's just hard to say what it ought to flag.
25 lines
577 B
JavaScript
25 lines
577 B
JavaScript
var _ = (function() {
|
|
if (typeof exports !== 'undefined') {
|
|
if (typeof module !== 'undefined' && module.exports) {
|
|
exports = module.exports = _;
|
|
}
|
|
exports._ = _;
|
|
}
|
|
return {
|
|
define: function(name, factory) {
|
|
}
|
|
};
|
|
})(this);
|
|
|
|
if (typeof exports !== 'undefined') {
|
|
if (typeof module !== 'undefined' && module.exports) {
|
|
exports = module.exports = emmet;
|
|
}
|
|
exports.emmet = emmet;
|
|
}
|
|
|
|
(function(){
|
|
var module;
|
|
if(typeof module === 'undefined'); // $ Alert[js/unneeded-defensive-code]
|
|
});
|