JMESPath 有恒等函数吗?

Does JMESPath have an identity function?

在 jq 过滤语言中,. 过滤表达式简单地 returns 输入 JSON 不变(漂亮的打印除外)。例如

$ echo '{"foo": true, "bar": 42}' | jq '.'
{
  "foo": true,
  "bar": 42
}

JMESPath 是否有类似的表达式(又名 identity function)?

current-node 运算符在 JMESPath 中执行此功能,例如

$ echo '{"foo": true, "bar": 42}' | ~/.local/go/bin/jp @
{
  "bar": 42,
  "foo": true
}

感谢 jdevillard 在 https://gitter.im/jmespath/chat 上的回答。