(storage_id)
| 75 | } |
| 76 | |
| 77 | function ply_storage_get_root(storage_id) { |
| 78 | var root = ply_storage_roots[storage_id]; |
| 79 | if (!root) { |
| 80 | throw new Error("Invalid storage handle"); |
| 81 | } |
| 82 | return root; |
| 83 | } |
| 84 | |
| 85 | function ply_storage_new(root_path_obj) { |
| 86 | var op_id = ply_storage_next_op_id(); |
no outgoing calls
no test coverage detected