mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 17:04:32 +04:00
QuickJS is a small and embeddable JavaScript engine. It supports the ES2023 specification including modules, asynchronous generators, proxies and BigInt. Signed-off-by: George Sapkin <george@sapk.in>
6 lines
88 B
Bash
6 lines
88 B
Bash
#!/bin/sh
|
|
|
|
if [ "$1" = 'quickjs' ]; then
|
|
qjs --help | grep -F "${PKG_VERSION//./-}"
|
|
fi
|