( prefix: string, type: MessageType | StorageKeyType, payload: any, )
| 14 | export const PUT = 'PUT'; |
| 15 | |
| 16 | export const construct = ( |
| 17 | prefix: string, |
| 18 | type: MessageType | StorageKeyType, |
| 19 | payload: any, |
| 20 | ): string => |
| 21 | prefix + |
| 22 | type + |
| 23 | (isString(payload) ? payload : jsonStringWithUndefined(payload)); |
| 24 | |
| 25 | export const deconstruct = ( |
| 26 | prefix: string, |
no test coverage detected
searching dependent graphs…