Skip to content

Commit

Permalink
Remove float parsing section of NOTES.md (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
domfarolino authored Aug 9, 2023
1 parent 1bf0d64 commit a7b2c46
Showing 1 changed file with 1 addition and 45 deletions.
46 changes: 1 addition & 45 deletions NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,50 +2,6 @@

documenting the current status of affairs

## float formatter

FF:

```js
console.log("%f", 23)
23.000000
```

Chrome:

```js
console.log("%f", 23)
23
```

FF:

```
console.log('bjoern and robert are born on the %fst dec', 1.234)
bjoern and robert are born on the 1.234000st dec
```

Chrome:

```
console.log('bjoern and robert are born on the %fst dec', 1.234)
bjoern and robert are born on the 1.234st dec
````
FF:
```js
console.log("%f", null)
0.000000
```

Chrome:

```js
console.log("%f", null)
NaN
```

## integer formatter

FF:
Expand Down Expand Up @@ -456,4 +412,4 @@ Edge:
console.time({ toString() { throw new Error("Farolino") } }) // toString called, no error thrown, no timer started
```

Bug: https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/11201116/
Bug: https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/11201116/

0 comments on commit a7b2c46

Please sign in to comment.