Sign in
mojo
/
mojo-tools
/
dd035f53e654d1c22fd30ffdca777f378e591ca6
/
.
/
sky
/
framework
/
inspector
/
indexeddb-agent.sky
blob: 9063860f2f8b168cec188b54452f38b7e3b668e1 [
file
] [
log
] [
blame
]
<script>
function
IndexedDB
()
{
}
// Needed to make the inspector not throw an exception.
IndexedDB
.
prototype
.
requestDatabaseNames
=
function
()
{
return
{
"databaseNames"
:
[]
};
};
module
.
exports
=
IndexedDB
;
</script>