You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<spanclass="cstat-no" title="statement not covered" > throw new TypeError( format( 'invalid argument. First argument must be a string or an array of strings. Value: `%s`.', locales ) );</span>
4202
4202
<spanclass="cstat-no" title="statement not covered" > }</span>
4203
4203
if ( arguments.length < 2 ) {
4204
-
opt = {};
4204
+
o = {};
4205
4205
} else if ( isObject( options ) ) {
4206
-
opt = options;
4206
+
o = options;
4207
4207
}<spanclass="branch-0 cbranch-no" title="branch not covered" > else {</span>
4208
4208
<spanclass="cstat-no" title="statement not covered" > throw new TypeError( format( 'invalid argument. Options argument must be an object. Value: `%s`.', options ) );</span>
4209
4209
<spanclass="cstat-no" title="statement not covered" > }</span>
4210
-
out = opts.name.toLocaleString( loc, opt ) + '(';
4210
+
out = opts.name.toLocaleString( loc, o ) + '(';
4211
4211
for ( i = 0; i < nfields; i++ ) {
4212
-
out += fields[ i ].toLocaleString( loc, opt );
4212
+
out += fields[ i ].toLocaleString( loc, o );
4213
4213
out += '=';
4214
-
out += tuple[ indices[ i ] ].toLocaleString( loc, opt );
4214
+
out += tuple[ indices[ i ] ].toLocaleString( loc, o );
0 commit comments