Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 

README.md

ScriptableScripts

Put any script you want to use in your Scriptable scripts folder.

KeyValueDB

Notes:

  • Local storage only currently
  • Uses JSON internally to store data

Usage:

Import the file

var KeyValueDB = importModule('KeyValueDB');
var db = new KeyValueDB('YourProjectName');

Get a value by key

var val = db.getValue(key)

Set a value by key

db.setValue(key, value)

Append a value to an array with the specified key

db.append(key, pushedValue)

Get everything

var object = db.getAll()

About

Script(s) for Scriptable (iOS app)

Topics

Resources

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.