From cf5aa73c46187374a3d4025e535678329834e31b Mon Sep 17 00:00:00 2001 From: justingrant Date: Wed, 21 Jun 2023 16:39:33 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=20a6a87?= =?UTF-8?q?d3f68ce4407f9fd1357efba895bbc83ed10=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 0280b38a..902e7921 100644 --- a/index.html +++ b/index.html @@ -2712,7 +2712,7 @@

1.2.3.2 ToTemporalTimeZoneSlotValue ( tempo

1.2.3.3 TimeZoneEquals ( one, two )

The abstract operation TimeZoneEquals takes arguments one (a String or Object) and two (a String or Object) and returns either a normal completion containing either true or false, or a throw completion. It returns true if its arguments represent time zones using the same identifier. It performs the following steps when called:

-
  1. If one and two are the same Object value, return true.
  2. Let timeZoneOne be ? ToTemporalTimeZoneIdentifier(one).
  3. Let timeZoneTwo be ? ToTemporalTimeZoneIdentifier(two).
  4. If timeZoneOne is timeZoneTwo, return true.
  5. Let recordOne be GetAvailableNamedTimeZoneIdentifier(timeZoneOne).
  6. If recordOne is empty, return false.
  7. Let recordTwo be GetAvailableNamedTimeZoneIdentifier(timeZoneTwo).
  8. If recordTwo is empty, return false.
  9. If recordOne.[[PrimaryIdentifier]] is recordTwo.[[PrimaryIdentifier]], return true.
  10. Return false.
+
  1. If one and two are the same Object value, return true.
  2. Let timeZoneOne be ? ToTemporalTimeZoneIdentifier(one).
  3. Let timeZoneTwo be ? ToTemporalTimeZoneIdentifier(two).
  4. If timeZoneOne is timeZoneTwo, return true.
  5. Let recordOne be GetAvailableNamedTimeZoneIdentifier(timeZoneOne).
  6. Let recordTwo be GetAvailableNamedTimeZoneIdentifier(timeZoneTwo).
  7. If recordOne is not empty and recordTwo is not empty and recordOne.[[PrimaryIdentifier]] is recordTwo.[[PrimaryIdentifier]], return true.
  8. Return false.