This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use PHPUnit\Framework\Assert as PHPUnit; | |
use Illuminate\Support\Arr; | |
use Illuminate\Foundation\Testing\TestResponse; | |
use Illuminate\Database\Eloquent\Model; | |
TestResponse::macro('assertViewHasDeep', function ($key, $value = null) { | |
$this->ensureResponseHasView(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function handleTextDirective(el, output, expression) { | |
// If nested model key is undefined, set the default value to empty string. | |
if (output === undefined && expression.match(/\./).length) { | |
output = '' | |
} | |
let selection | |
let anchorNode | |
let position | |
let isElBeingEdited |
OlderNewer