@version

.. @version::
语法

@version

概述

记录项目的版本. @version标记后面的文本将用于表示项目的版本.

示例
Using the @version tag
/**
 * Solves equations of the form a * x = b. Returns the value
 * of x.
 * @version 1.2.3
 * @tutorial solver
 */
function solver(a, b) {
    return b / a;
}