Function checkVersion

  • Compare two version strings

    Parameters

    • v1: string

      First version string to compare

    • v2: string

      second version string to compare

    Returns -1 | 0 | 1

    Return 0 if v1 == v2, or 1 if v1 is greater, or -1 if v2 is greater

    if (me.utils.checkVersion("7.0.0") > 0) {
    console.error(
    "melonJS is too old. Expected: 7.0.0, Got: 6.3.0"
    );
    }