/** * Returns a new layer that produces the outputs of this layer but also * passes through the inputs. * * @tsplus getter effect/core/io/Layer passthrough */ export function passthrough( self: Layer ): Layer { return Layer.environment() + self }