* Useful if isPasswordEmpty()
(entity: Entity)
| 64 | * Useful if isPasswordEmpty() |
| 65 | */ |
| 66 | function copyEntityAndCopyKeyEncSizeEnc(entity: Entity) { |
| 67 | const res = cloneDeep(entity); |
| 68 | res["keyEnc"] = res["keyRaw"]; |
| 69 | res["sizeEnc"] = res["sizeRaw"]; |
| 70 | return res; |
| 71 | } |
| 72 | |
| 73 | export class FakeFsEncrypt extends FakeFs { |
| 74 | innerFs: FakeFs; |
no outgoing calls
no test coverage detected