Drop TODO comment

This commit is contained in:
Gert Hengeveld 2021-09-10 10:01:44 +02:00
parent 20260f5dfd
commit b56958f9f0

View File

@ -227,7 +227,6 @@ export function instrument(obj: unknown, options: Options = {}) {
acc[key]._original = value;
// Deal with functions that also act like an object
// TODO might be able to make functions instrumentable so we can omit this extra step
if (Object.keys(value).length > 0) {
Object.assign(acc[key], instrument({ ...value }, { ...options, path: path.concat(key) }));
}