From 1c91c93a1a6e755b67193c5262b18a1a4a9011c6 Mon Sep 17 00:00:00 2001 From: chengzhihao Date: Tue, 24 Jun 2025 17:25:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=95=BF=E5=BA=A6=E4=B8=8D?= =?UTF-8?q?=E8=B6=85=E8=BF=87120?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issue: https://gitee.com/openharmony/interface_sdk-js/issues/ICHHQP Signed-off-by: chengzhihao --- api/@ohos.util.d.ets | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/api/@ohos.util.d.ets b/api/@ohos.util.d.ets index 72a794baa4..cdbc962659 100644 --- a/api/@ohos.util.d.ets +++ b/api/@ohos.util.d.ets @@ -966,7 +966,8 @@ declare namespace util { * Compares two objects for equality. * * @param { Object } obj - An object - * @returns { boolean } Returns true if the given object is the same as the current object; Otherwise, false is returned. + * @returns { boolean } Returns true if the given object is the same as the current object; + * Otherwise, false is returned. * @syscap SystemCapability.Utils.Lang * @crossplatform * @atomicservice @@ -1048,7 +1049,8 @@ declare namespace util { /** * Checks whether the current RationalNumber object represents the value 0. * - * @returns { boolean } If the value represented by the current object is 0, true is returned. Otherwise, false is returned. + * @returns { boolean } If the value represented by the current object is 0, true is returned. + * Otherwise, false is returned. * @syscap SystemCapability.Utils.Lang * @crossplatform * @atomicservice @@ -1179,7 +1181,8 @@ declare namespace util { * Check whether the entered value is of arraybuffer type. * * @param { Object } value - A arraybuffer value - * @returns { boolean } Returns true if the value is a built-in ArrayBuffer instance. This does not include SharedArrayBuffer instances. + * @returns { boolean } Returns true if the value is a built-in ArrayBuffer instance. + * This does not include SharedArrayBuffer instances. * Usually, it is desirable to test for both; See isAnyArrayBuffer() for that. * @syscap SystemCapability.Utils.Lang * @crossplatform -- Gitee