Sign in
◑
Theme
chromium
/
external
/
github.com
/
WebKit
/
JetStream
/
12a84634a97cd389d59e843b2d6334a75a4b92e5
/
.
/
validatorjs
/
benchmark-node.mjs
blob: e926fc23dbf110f85871f92e88439ef528846a2b [
file
]
import
{
runTest
}
from
"./src/test.mjs"
;
const
then
=
performance
.
now
();
runTest
();
const
duration
=
performance
.
now
()
-
then
;
console
.
log
(
`Duration: ${duration.toFixed(2)}ms`
);