module Hash

Public Class Methods

ruby2_keywords_hash(hash) → new_hash click to toggle source

Duplicates a given hash and returns the new hash.

# File lib/ruby2_keywords.rb, line 53
def ruby2_keywords_hash(hash)
  hash.dup
end
ruby2_keywords_hash?(hash) → false click to toggle source

Returns false.

# File lib/ruby2_keywords.rb, line 43
def ruby2_keywords_hash?(hash)
  false
end