Your IP : 18.220.88.62


Current Path : /home/sudancam/.trash/system.1/storage/vendor/mtdowling/jmespath.php/src/
Upload File :
Current File : //home/sudancam/.trash/system.1/storage/vendor/mtdowling/jmespath.php/src/JmesPath.php

<?php
namespace JmesPath;

/**
 * Returns data from the input array that matches a JMESPath expression.
 *
 * @param string $expression Expression to search.
 * @param mixed $data Data to search.
 *
 * @return mixed
 */
if (!function_exists(__NAMESPACE__ . '\search')) {
    function search($expression, $data)
    {
        return Env::search($expression, $data);
    }
}