Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
DoctorMcKay committed Sep 3, 2024
2 parents bba4a18 + d1634d7 commit 4c80b9e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ Formats a currency value and returns a string. For example:

```js
console.log(SteamUser.formatCurrency(12.34, SteamUser.ECurrencyCode.USD)); // $12.34
console.log(SteamUser.formatCurrency(12345, SteamUser.ECurrencyCode.JPY)); // 12345
console.log(SteamUser.formatCurrency(123.45, SteamUser.ECurrencyCode.EUR)); // 123,45
console.log(SteamUser.formatCurrency(12345, SteamUser.ECurrencyCode.JPY)); // ¥ 12345
console.log(SteamUser.formatCurrency(123.45, SteamUser.ECurrencyCode.EUR)); // 123,45
```

# Options [^](#contents)
Expand Down Expand Up @@ -716,9 +716,9 @@ v3.5.0 or later is required to use `isPhoneVerified`.**
Requests details about your account's Steam Guard status. This could be used to see if your account passes the Steam Guard trading requirements.

In order to trade, **all** of the following must be true:
- `enabled` must be `true` (account-level restriction)
- `enabledTime` must be at least 15 days ago (account-level restriction)
- ONE of `machineTime` OR `twoFactorTime` must be at least 7 days ago
- `isSteamGuardEnabled` must be `true` (account-level restriction)
- `timestampSteamGuardEnabled` must be at least 15 days ago (account-level restriction)
- ONE of `timestampMachineSteamGuardEnabled` OR `timestampTwoFactorEnabled` must be at least 7 days ago

### getCredentialChangeTimes(callback)
- `callback` - A function to be called when the requested data is available
Expand Down

0 comments on commit 4c80b9e

Please sign in to comment.