mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
13 lines
162 B
Plaintext
13 lines
162 B
Plaintext
<script>
|
|
function ConsoleAgent() {
|
|
}
|
|
|
|
ConsoleAgent.prototype.enable = function() {
|
|
return {
|
|
result: true,
|
|
};
|
|
};
|
|
|
|
module.exports = ConsoleAgent;
|
|
</script>
|