snippets/htmlhead/script-js.php
<?php
$files = $files ?? [];
foreach ($files as $dep) {
$options = [];
if (is_array($dep)) {
$options = $dep;
$dep = A::get($options, 'src');
if (array_key_exists('src', $options)) {
unset($options['src']);
}
}
if (empty($dep)) {
continue;
}
if (strpos($dep, '|') !== false) {
list($dep, $integrity) = explode('|', $dep);
$options = array_merge([
'integrity' => $integrity,
'crossorigin' => 'anonymous',
], $options);
}
if (isset($async) && $async) {
$options['async'] = true;
}
if (isset($defer) && $defer) {
$options['defer'] = true;
}
if (class_exists('\Bnomei\Fingerprint')) {
echo Bnomei\Fingerprint::js($dep, $options) . PHP_EOL;
} else {
echo js($dep, $options);
}
}