Latest repo

This commit is contained in:
Marc
2025-06-02 16:42:16 +00:00
parent 53ddf1a329
commit cde5fae175
27907 changed files with 3875388 additions and 1 deletions

23
node_modules/classlist-polyfill/script/test generated vendored Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
set -e
if [ -t 1 ]; then
red="$(printf "\033[31m")"
brightred="$(printf "\033[31;1m")"
green="$(printf "\033[32m")"
reset="$(printf "\033[m")"
else
red=
brightred=
green=
reset=
fi
phantomjs tests/runner.coffee tests/qunit.html | sed -E "
# failure line:
s/^(✘.+)/${red}\\1${reset}/
# failure details:
s/^( .+)/${brightred}\\1${reset}/
# success marker:
s/(✔︎)/${green}\\1${reset}/
"