Sign in
mojo
/
mojo
/
5ddeb46264fe8ba308a36dd3e69b110a42aa591f
/
.
/
sky
/
framework
/
inspector
/
indexeddb-agent.sky
blob: 5d37993dfc8453c7889792c9f9cd320ec9877549 [
file
]
<script>
class
IndexedDB
{
constructor
()
{
Object
.
preventExtensions
(
this
);
}
// Needed to make the inspector not throw an exception.
requestDatabaseNames
()
{
return
{
"databaseNames"
:
[]
};
}
}
module
.
exports
=
IndexedDB
;
</script>