Flow\JSONPath\JSONPath::current PHP Method

current() public method

Return the current element
public current ( )
    public function current()
    {
        $value = current($this->data);
        return AccessHelper::isCollectionType($value) ? new static($value, $this->options) : $value;
    }