Skip to content

Instantly share code, notes, and snippets.

@sebge2emasphere
Created May 22, 2018 13:25
Show Gist options
  • Save sebge2emasphere/8157a61ab5085a12403f0fbe803d7bf2 to your computer and use it in GitHub Desktop.
Save sebge2emasphere/8157a61ab5085a12403f0fbe803d7bf2 to your computer and use it in GitHub Desktop.
key(val("ref"))
key(val("firstName"), val("lastName"))
key(toUpperCase(val("ref")))
key(toLowerCase(val("ref")))
key(takeFirstCharacters(val("ref"), 2))
key(takeLastCharacters(val("ref"), 2))
key(takeLastCharacters(val("ref"), 0))
key(takeRegexGroup(val("ref"), "regex", 1))
key(concat(val("firstName"), " ", val("lastName")))
key(" ")
key(const(" "))
key(true)
key(const(true))
key(0)
key(9.9)
key(999.981)
key(99)
key(+99)
key(-99)
key(-9.9)
key(+9.9)
key(const(99))
// key(year(2017))
// key(month(2017, 12))
// key(date(2017, 12, 25))
// key(hour(2017, 12, 25, 16))
// key(dateTime(2017, 12, 25, 16, 30, 45))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment