Repository URL to install this package:
|
Version:
0.6.4 ▾
|
/*
* (c) Copyright IBM Corp. 2021
* (c) Copyright Instana Inc. and contributors 2019
*/
'use strict';
const semver = require('semver');
/** @type {(version: string) => boolean} */
module.exports = exports = function supportedVersion(version) {
return semver.satisfies(version, '^10.4.0 || ^11 || >=12.0.0');
};