From 2bb4a3a3c67b484b682b0fd89feccc860842d822 Mon Sep 17 00:00:00 2001
From: Travis CI Promise object.
Returns a Promise object.
Merges existing value with input value, assuming they are stringified json.
Returns a Promise object. Not supported by all native implementations.
Erases all AsyncStorage for all clients, libraries, etc. You probably
don't want to call this - use removeItem or multiRemove to clear only your
-own keys instead. Returns a Promise object.
Erases all keys with a particular prefix. Useful if all your keys have a -specific prefix.
Gets all keys known to the app, for all callers, libraries, etc. Returns a Promise object.
multiGet invokes callback with an array of key-value pair arrays that
+own keys instead. Returns a Promise object.
Gets all keys known to the app, for all callers, libraries, etc. Returns a Promise object.
multiGet invokes callback with an array of key-value pair arrays that
matches the input format of multiSet. Returns a Promise object.
multiGet(['k1', 'k2'], cb) -> cb([['k1', 'val1'], ['k2', 'val2']])
multiSet and multiMerge take arrays of key-value array pairs that match
the output of multiGet, e.g. Returns a Promise object.
multiSet([['k1', 'val1'], ['k2', 'val2']], cb);
Delete all the keys in the keys array. Returns a Promise object.
Merges existing values with input values, assuming they are stringified
json. Returns a Promise object.
Not supported by all native implementations.