Skip to content

Commit d355e47

Browse files
committed
PR comment: Make JsValue::is_negative_zero() method pub(crate)
1 parent e53f3f5 commit d355e47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/engine/src/value/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ impl JsValue {
357357
/// Returns true if the value is a negative zero (`-0`).
358358
#[inline]
359359
#[must_use]
360-
pub fn is_negative_zero(&self) -> bool {
360+
pub(crate) fn is_negative_zero(&self) -> bool {
361361
self.0.is_negative_zero()
362362
}
363363

0 commit comments

Comments
 (0)