Ad
  • Custom User Avatar
      const inspect = Symbol.for('nodejs.util.inspect.custom');
      // ...
      toString() {
        return "321";
      }
      get [Symbol.toStringTag]() {
        return 'Validator';
      }
      [inspect]() {
        return "123";
      }
    

    doesn't solve the problem