feat: Add Be and tbd skill, also added Roadmap file

This commit is contained in:
2026-05-10 16:32:12 -04:00
parent 3500ade13f
commit 0bb8885802
29587 changed files with 10611695 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
<!doctype html>
<html>
<head>
<meta charset="utf8" />
<title>localForage no available driver example</title>
</head>
<body>
<script>
try {
window.indexedDB.open = null;
} catch (e) { }
try {
window.localStorage.setItem = null;
} catch (e) { }
try {
window.openDatabase = null;
} catch (e) { }
</script>
<script src="../dist/localforage.js"></script>
<script>
localforage.ready(function() {
console.log('ready', arguments);
localforage.setItem('testKey', 'testValue').then(function() {}, function() {
console.log('setItem: ', arguments);
});
localforage.getItem('testKey').then(function() {}, function() {
console.log('getItem: ', arguments);
});
})
.then(function() {
}, function() {
console.log('ready().then', arguments);
console.log('localforage.driver():', localforage.driver());
localforage.setDriver(localforage.LOCALSTORAGE).then(function() {}, function() {
console.log('setDriver', arguments);
});
});
</script>
</body>
</html>