mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
15 lines
355 B
Bash
Executable File
15 lines
355 B
Bash
Executable File
cd "$(dirname "$0")"
|
|
|
|
echo "Running performance suite in node..."
|
|
node perf.js ../lodash.js && node perf.js ../lodash.min.js
|
|
|
|
for cmd in rhino "rhino -require" narwhal ringo phantomjs; do
|
|
echo ""
|
|
echo "Running performance suite in $cmd..."
|
|
$cmd perf.js ../lodash.min.js
|
|
done
|
|
|
|
echo ""
|
|
echo "Running performance suite in a browser..."
|
|
open index.html
|