(value)
| 17 | const opts = { prefix, context }; |
| 18 | |
| 19 | function asIdlDictionary(value) { |
| 20 | return { __proto__: null, ...value }; |
| 21 | } |
| 22 | |
| 23 | function assertIdlDictionary(actual, expected) { |
| 24 | assert.deepStrictEqual(actual, asIdlDictionary(expected)); |
no outgoing calls
no test coverage detected