Returns keys after from. Meaning, if you had the keys ["a", "b", "c"] in the namespace, calling kv.items({from: "a"}) would return the items for the keys ["b", "c"].
from
["a", "b", "c"]
kv.items({from: "a"})
["b", "c"]
The number of keys to return in the list call.
Default and maximum is 100. Minimum is 1.
100
1
Generated using TypeDoc
Returns keys after
from
. Meaning, if you had the keys["a", "b", "c"]
in the namespace, callingkv.items({from: "a"})
would return the items for the keys["b", "c"]
.