Method used to modify a key for use in a Store. Used primarily by withPrefix.
import { user } from '../data/user';const store = stores.utils.withPrefix(stores.localStore(), function(key) { return `${key}|${user.guid}`;});
The key to modify before passing to a Store.
The modified key to use in a Store.
Method used to modify a key for use in a Store. Used primarily by withPrefix.