(obj: any)
| 180 | } |
| 181 | |
| 182 | export function getOwnProperties(obj: any): (string | symbol)[] { |
| 183 | const ownProps = new Set<string | symbol>() |
| 184 | if (isFinalObj(obj)) { |
| 185 | return [] |
| 186 | } |
| 187 | collectOwnProperties(obj, ownProps) |
| 188 | return Array.from(ownProps) |
| 189 | } |
| 190 | |
| 191 | const defaultCloneOptions: CloneOptions = { forceWritable: false } |
| 192 |
no test coverage detected