Phonegap Boilerplate Documentation

localStore

Wrapper around localStorage features to ease json encoding/decoding


localStore.set(key, value)

Set localStorage[key] to JSON encoded value

Parameters

key: String, Item key

value: Object, Item, will be json encoded

localStore.get(key)

Return JSON decoded localStorage[key]

Parameters

key: String, item key

Returns: Object, the json decoded item