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