Sha256: fea68057acaba8f277e85281a847efb8f0f9f3c8dcbe2c7227955b37f5455dd8
Contents?: true
Size: 627 Bytes
Versions: 30
Compression:
Stored size: 627 Bytes
Contents
# frozen_string_literal: true module Cmdlet # Comparison helpers, eg. or, and, equal, not equal, less than, greater than etc. module Comparison # Ne: Return true if left hand side is NOT equal to right hand side class Ne < Cmdlet::BaseCmdlet # # @param [Object] lhs - lhs - left hand side value # @param [Object] rhs - rhs - right hand side value # @return [String] truthy value if left hand side is NOT equal to right hand side def call(lhs, rhs) lhs = lhs.to_s if lhs.is_a?(Symbol) rhs = rhs.to_s if rhs.is_a?(Symbol) lhs != rhs end end end end
Version data entries
30 entries across 30 versions & 1 rubygems