"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const semver_1 = require("semver");
const MIN_RUNTIME = '6.5.0';
exports.supportedRange = `>= ${MIN_RUNTIME}`;
function isSupported(runtimeVersion) {
return semver_1.gte(runtimeVersion, MIN_RUNTIME);
}
exports.isSupported = isSupported;
//# sourceMappingURL=runtime.js.map