(e)
| 75 | export const storePrefix = '_dash_persistence.'; |
| 76 | |
| 77 | function err(e) { |
| 78 | const error = typeof e === 'string' ? new Error(e) : e; |
| 79 | |
| 80 | return createAction('ON_ERROR')({ |
| 81 | type: 'frontEnd', |
| 82 | error |
| 83 | }); |
| 84 | } |
| 85 | |
| 86 | /* |
| 87 | * Does a key fit this prefix? Must either be an exact match |
no outgoing calls
no test coverage detected