-
Notifications
You must be signed in to change notification settings - Fork 575
Expand file tree
/
Copy pathkeys.rb
More file actions
32 lines (24 loc) · 820 Bytes
/
keys.rb
File metadata and controls
32 lines (24 loc) · 820 Bytes
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
# frozen_string_literal: true
#
# keys.rb
#
module Puppet::Parser::Functions
newfunction(:keys, type: :rvalue, doc: <<-DOC
@summary
**Deprecated:** Returns the keys of a hash as an array.
@return [Array]
An array containing each of the hashes key values.
> **Note:** **Deprecated** from Puppet 5.5.0, the built-in [`keys`](https://puppet.com/docs/puppet/latest/function.html#keys)
function will be used instead of this function.
DOC
) do |arguments|
raise(Puppet::ParseError, "keys(): Wrong number of arguments given (#{arguments.size} for 1)") if arguments.empty?
hash = arguments[0]
unless hash.is_a?(Hash)
raise(Puppet::ParseError, 'keys(): Requires hash to work with')
end
result = hash.keys
return result
end
end
# vim: set ts=2 sw=2 et :