UNPKG
@thaunknown/v8-profiler-next
Version:
latest (1.10.0)
1.10.0
node bindings for the v8 profiler
github.com/hyj1991/v8-profiler-next
hyj1991/v8-profiler-next
@thaunknown/v8-profiler-next
/
lib
/
utils.js
7 lines
(6 loc)
•
202 B
JavaScript
View Raw
1
2
3
4
5
6
7
'use strict'
;
exports
.
nodeVersionLessThan
=
function
(
version
) {
const
nodeVersion = process.
versions
.
node
;
const
tags = nodeVersion.
split
(
'.'
);
return
Number
(tags[
0
]) <
Number
(version); };