????

Your IP : 18.119.0.35


Current Path : C:/inetpub/vhost/invest.gdtsolutions.vn/api/node_modules/typeorm/browser/util/
Upload File :
Current File : C:/inetpub/vhost/invest.gdtsolutions.vn/api/node_modules/typeorm/browser/util/VersionUtils.js

export class VersionUtils {
    static isGreaterOrEqual(version, targetVersion) {
        const v1 = parseVersion(version);
        const v2 = parseVersion(targetVersion);
        return (v1[0] > v2[0] ||
            (v1[0] === v2[0] && v1[1] > v2[1]) ||
            (v1[0] === v2[0] && v1[1] === v2[1] && v1[2] >= v2[2]));
    }
}
function parseVersion(version = "") {
    const v = [0, 0, 0];
    version.split(".").forEach((value, i) => (v[i] = parseInt(value, 10)));
    return v;
}

//# sourceMappingURL=VersionUtils.js.map