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