DEBSOURCES
Skip Quicknav
sources / ruby-jmespath / 1.6.2-1 / lib / jmespath / nodes / current.rb
1234567891011
# frozen_string_literal: true module JMESPath # @api private module Nodes class Current < Node def visit(value) value end end end end