(op_id)
| 203 | } |
| 204 | |
| 205 | function ply_storage_try_recv(op_id) { |
| 206 | if (Object.prototype.hasOwnProperty.call(ply_storage_pending, op_id)) { |
| 207 | var result = ply_storage_pending[op_id]; |
| 208 | delete ply_storage_pending[op_id]; |
| 209 | return js_object(result); |
| 210 | } |
| 211 | return -1; |
| 212 | } |
| 213 | |
| 214 | miniquad_add_plugin({ |
| 215 | register_plugin: function (importObject) { |
no test coverage detected