(val)
| 1 | 'use strict' |
| 2 | |
| 3 | const isObject = (val) => val !== null && typeof val === 'object' && !Array.isArray(val) |
| 4 | |
| 5 | // this is a modified version of https://github.com/chalk/ansi-regex (MIT License) |
| 6 | const ANSI_REGEX = |
no outgoing calls
no test coverage detected
searching dependent graphs…