(k)
| 2445 | { |
| 2446 | const [open, close] = inspect.colors[inspect.styles.string]; |
| 2447 | const keyPattern = (k) => new RegExp( |
| 2448 | `\\u001b\\[${open}m\\[${k}\\]\\u001b\\[${close}m: ` |
| 2449 | ); |
| 2450 | const colored = util.inspect(new Uint8Array(0), { showHidden: true, colors: true }); |
| 2451 | assert.match(colored, keyPattern('BYTES_PER_ELEMENT')); |
| 2452 | assert.match(colored, keyPattern('length')); |
no outgoing calls
no test coverage detected
searching dependent graphs…