Sign in
mojo
/
mojo-tools
/
977e2fec0fa3eaf70bd873fc5f537a2aa59b266d
/
.
/
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>