Update puppetlabs/stdlib module
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / empty.rb
index 4f77ad3..e0b9838 100644 (file)
@@ -1,28 +1,25 @@
 #
 # empty.rb
 #
-
 module Puppet::Parser::Functions
-  newfunction(:empty, :type => :rvalue, :doc => <<-EOS
-Returns true if the variable is empty.
-    EOS
-  ) do |arguments|
+  newfunction(:empty, :type => :rvalue, :doc => <<-DOC
+    Returns true if the variable is empty.
 
-    raise(Puppet::ParseError, "empty(): Wrong number of arguments given (#{arguments.size} for 1)") if arguments.size < 1
+    Note: from Puppet 5.5.0, the compatible function with the same name in Puppet core
+    will be used instead of this function.
+  DOC
+             ) do |arguments|
 
+    raise(Puppet::ParseError, "empty(): Wrong number of arguments given (#{arguments.size} for 1)") if arguments.empty?
     value = arguments[0]
 
     unless value.is_a?(Array) || value.is_a?(Hash) || value.is_a?(String) || value.is_a?(Numeric)
       raise(Puppet::ParseError, 'empty(): Requires either array, hash, string or integer to work with')
     end
 
-    if value.is_a?(Numeric)
-      return false
-    else
-      result = value.empty?
-
-      return result
-    end
+    return false if value.is_a?(Numeric)
+    result = value.empty?
+    return result
   end
 end