dumbmatter / fakeIndexedDB

A pure JS in-memory implementation of the IndexedDB API
Apache License 2.0
562 stars 69 forks source link

feat: add close/onclose event to fakeIndexedDatabase. fixed #50 #87

Closed snowyu closed 3 months ago

dumbmatter commented 3 months ago

Sorry for the late reply!

The close event is only supposed to fire in abnormal circumstances, not every time a database closes. So this PR is not following the spec.

50 is asking for a non-standard API to trigger this abnormal circumstance (and therefore fire a close event). Which is a good idea, I just haven't done it because it requires very carefully making sure I do it in the correct way. Same with #51.