Utils is a utility class.

Utils 是工具类。

构造函数

方法

  • 参数

    • path: string

    返回 string

    Gets the base name of the file from the specified path, including the extension.

    从指定路径中获取文件名(包含扩展名)。

  • 参数

    • path: string

    返回 string

    Gets the file extension from the specified path and converts it to lowercase. For example, "1. abc" will return abc.

    从指定路径获取文件扩展名,并转换为小写字母。例如"1.abc"将返回abc。

  • 参数

    • target: Object

      The target. It's optional.

    • 可选method: string | Function

      The method, it can be a function or a function name.

    返回 string

    A unique ID for the given target-method pair.

    Assigns a global unique ID for the given target-method pair.

    为一个target-method对分配一个全局唯一ID。

  • 参数

    • str: string

      The string to be parsed.

    • radix: number = 0

      The radix for parsing the number (between 2 and 36). Defaults to 0, which means decimal. The other values range from 2 to 36. If it starts with "0xX" or "0X", it will be based on 16. If the parameter is not within the above range, this method returns 0.

    返回 number

    The parsed number.

    Parses a string and returns an integer. Unlike the native JavaScript parseInt, if the string is empty or not a number, this method returns 0 instead of NaN.

    解析字符串并返回一个整数。与 JavaScript 原生的 parseInt 不同,如果字符串为空或非数字,这里返回 0 而不是 NaN。

  • 参数

    • template: string

      The template string.

    • vars: Record<string, any>

      The specified values.

    返回 string

    The new string.

    Parses a template string and returns a new string by replacing the placeholders with the specified values.

    解析模板字符串,并返回一个新字符串,替换占位符为指定值。

  • 参数

    • path: string

      The file path.

    • newExt: string

      The new file extension.

    • 可选excludeDot: boolean

      Whether to exclude the dot prefix in the new extension. Default is false.

    返回 string

    The path with the new file extension.

    Changes the file extension of the specified path.

    更改指定路径的文件扩展名。

  • 参数

    • radian: number

      The radian value.

    返回 number

    The angle value in degrees.

    Converts radians to an angle.

    将弧度转换为角度。

  • 参数

    • angle: number

      The angle value.

    返回 number

    The radian value.

    Converts an angle to radians.

    将角度转换为弧度。