UNPKG
v8-profiler-n-api
Version:
latest (1.11.0)
1.11.0
1.10.1
node bindings for the v8 profiler
github.com/rchervot/v8-profiler-n-api
rchervot/v8-profiler-n-api
v8-profiler-n-api
/
lib
/
utils.js
7 lines
(6 loc)
•
196 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); };