mirror of
https://github.com/nodejs/node.git
synced 2025-05-12 02:02:29 +00:00

Fixes: https://github.com/nodejs/node/issues/18254 PR-URL: https://github.com/nodejs/node/pull/21393 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Yuta Hiroto <hello@hiroppy.me>
15 lines
305 B
JavaScript
15 lines
305 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
|
|
const runBenchmark = require('../common/benchmark');
|
|
|
|
runBenchmark('path',
|
|
[
|
|
'n=1',
|
|
'path=',
|
|
'pathext=',
|
|
'paths=',
|
|
'props='
|
|
], { NODEJS_BENCHMARK_ZERO_ALLOWED: 1 });
|