remove warnings from src/ files

This commit is contained in:
KtorZ 2017-07-28 11:39:46 +02:00
parent a96e6b915a
commit bda2b93347
No known key found for this signature in database
GPG Key ID: 3F72E8BC2894C015
2 changed files with 0 additions and 9 deletions

View File

@ -28,7 +28,6 @@ import Data.String.Read (read)
import Database.IndexedDB.Core
import Database.IndexedDB.IDBKey.Internal (class IDBKey, Key, toKey, unsafeFromKey)
import Database.IndexedDB.IDBKey.Internal as IDBKey
--------------------

View File

@ -3,14 +3,6 @@ const toArray = function toArray(xs) {
};
exports._showDatabase = function _showDatabase(db) {
return '(IDBDatabase ' +
'{ name: ' + db.name +
', objectStoreNames: [' + toArray(db.objectStoreNames).join(', ') + ']' +
', version: ' + db.version +
' })';
};
exports._close = function _close(db) {
return function aff(success, error) {
try {