Resolve getters during logging

  11 Mar 2022   1 min read

Automatically expanded objects (logged with the special comment //?+) now resolve property getters. So in case of  const a = { get b() { return 1; } }; //?+  the output will be { b: 1 }. If you want to always resolve property getters regardless whether the logged object is automatically expanded or not, you may use the new resolveGetters configuration setting.