diff options
author | Bryan Jen <bryan.jen@gmail.com> | 2015-12-21 17:41:55 -0700 |
---|---|---|
committer | Bryan Jen <bryan.jen@gmail.com> | 2015-12-21 17:41:55 -0700 |
commit | 0073c6d8de4fa0a042e82287c8a1e9603601a57b (patch) | |
tree | 023157db7ad3212c33637f370bc1f1dfc9e584a2 /README.markdown | |
parent | 1c6ae4793f9ab8a3c4a15ec1a01563b42715879b (diff) | |
parent | 1da820e61e08e72cf69d8833c37ecb9446fcd142 (diff) | |
download | puppet-stdlib-0073c6d8de4fa0a042e82287c8a1e9603601a57b.tar.gz puppet-stdlib-0073c6d8de4fa0a042e82287c8a1e9603601a57b.tar.bz2 |
Merge pull request #553 from logicminds/absolute_path
adds new parser called is_absolute_path
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/README.markdown b/README.markdown index 221de6e..a6ed1fb 100644 --- a/README.markdown +++ b/README.markdown @@ -474,6 +474,10 @@ Boolean check to determine whether a variable is of a given data type. This is e See the [the Puppet type system](https://docs.puppetlabs.com/references/latest/type.html#about-resource-types) for more information about types. See the [`assert_type()`](https://docs.puppetlabs.com/references/latest/function.html#asserttype) function for flexible ways to assert the type of a value. +#### `is_absolute_path` + +Returns 'true' if the given path is absolute. *Type*: rvalue. + #### `is_array` Returns 'true' if the variable passed to this function is an array. *Type*: rvalue. |