bifocal/node_modules/flagged-respawn/lib/is-v8flags.js

6 lines
104 B
JavaScript
Raw Normal View History

2024-06-19 09:56:58 -04:00
function isV8flags(flag, v8flags) {
return v8flags.indexOf(flag) >= 0;
}
module.exports = isV8flags;