Replace unicode characters that pyyaml cannot read

This commit is contained in:
Rick Waldron 2020-10-29 13:42:44 -04:00
parent a563e3a3f8
commit 224c0ce19e
2 changed files with 4 additions and 4 deletions

View File

@ -25,9 +25,9 @@ info: |
If IsCallable(predicate) is false, throw a TypeError exception.
Let k be 0.
Repeat, while k < len,
Let Pk be ! ToString(𝔽(k)).
Let Pk be ! ToString(F(k)).
Let kValue be ? Get(O, Pk).
Let testResult be ! ToBoolean(? Call(predicate, thisArg, « kValue, 𝔽(k), O »)).
Let testResult be ! ToBoolean(? Call(predicate, thisArg, « kValue, F(k), O »)).
If testResult is true, return kValue.
Set k to k + 1.
Return undefined.

View File

@ -17,9 +17,9 @@ info: |
22.1.3.9 Array.prototype.findIndex ( predicate[ , thisArg ] )
Repeat, while k < len,
Let Pk be ! ToString(𝔽(k)).
Let Pk be ! ToString(F(k)).
Let kValue be ? Get(O, Pk).
Let testResult be ! ToBoolean(? Call(predicate, thisArg, « kValue, 𝔽(k), O »)).
Let testResult be ! ToBoolean(? Call(predicate, thisArg, « kValue, F(k), O »)).
...
IntegerIndexedElementGet ( O, index )