-
Notifications
You must be signed in to change notification settings - Fork 575
Expand file tree
/
Copy pathstrip.rb
More file actions
42 lines (32 loc) · 1.04 KB
/
strip.rb
File metadata and controls
42 lines (32 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true
#
# strip.rb
#
module Puppet::Parser::Functions
newfunction(:strip, type: :rvalue, doc: <<-DOC
@summary
This function removes leading and trailing whitespace from a string or from
every string inside an array.
@return
String or Array converted
@example **Usage**
strip(" aaa ")
Would result in: "aaa"
> *Note:*: from Puppet 6.0.0, the compatible function with the same name in Puppet core
will be used instead of this function.
DOC
) do |arguments|
raise(Puppet::ParseError, "strip(): Wrong number of arguments given (#{arguments.size} for 1)") if arguments.empty?
value = arguments[0]
unless value.is_a?(Array) || value.is_a?(String)
raise(Puppet::ParseError, 'strip(): Requires either array or string to work with')
end
result = if value.is_a?(Array)
value.map { |i| i.is_a?(String) ? i.strip : i }
else
value.strip
end
return result
end
end
# vim: set ts=2 sw=2 et :