```sh
var = ends_with all partial
```
Returns true if the first argument ends with the value of the second argument.
* *
**true** if ends with.
```sh
result = ends_with abcd abc
value = set "some text"
result = ends_with ${value} "me text"
result = ends_with abcd abc
```