endsWith
Syntax
endsWith(input, suffix)<string>.endsWith(suffix)Arguments
Examples
endsWith("hello world", "world")
// true"foobar".endsWith("foo")
// false$ echo '{"file": "photo.png"}' | dasel -i json 'file.endsWith(".png")'
trueLast updated