File tree Expand file tree Collapse file tree 11 files changed +16
-15
lines changed
Expand file tree Collapse file tree 11 files changed +16
-15
lines changed Original file line number Diff line number Diff line change @@ -260,6 +260,7 @@ A total of 36 issues were closed in this release:
260260
261261<details >
262262
263+ - [ ` b721461 ` ] ( https://github.com/stdlib-js/stdlib/commit/b721461895b04dd66f0915c76347244a7cc56148 ) - ** docs:** revert style changes _ (by Athan Reines)_
263264- [ ` 3024bb3 ` ] ( https://github.com/stdlib-js/stdlib/commit/3024bb37f70bf55295d9c4bf81107ff57c15ff8a ) - ** docs:** fix section comments and lint errors in ` array ` and ` assert ` READMEs _ (by Philipp Burckhardt)_
264265- [ ` 5cad666 ` ] ( https://github.com/stdlib-js/stdlib/commit/5cad666695971ba8af5bc2392893d1f32687a1f1 ) - ** bench:** refactor to use string interpolation in ` array/empty-like ` [ (#10484 )] ( https://github.com/stdlib-js/stdlib/pull/10484 ) _ (by Aman Singh)_
265266- [ ` 05e2a72 ` ] ( https://github.com/stdlib-js/stdlib/commit/05e2a7238d6385111152d041b60e1f27d478db97 ) - ** bench:** refactor to use string interpolation in ` array/fixed-endian-float32 ` [ (#10486 )] ( https://github.com/stdlib-js/stdlib/pull/10486 ) _ (by Aman Singh)_
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ var bool = isAccessorArray( arr );
7171
7272## Examples
7373
74- <!-- eslint-disable object-curly-newline -->
74+ <!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
7575
7676<!-- eslint no-undef: "error" -->
7777
@@ -125,7 +125,7 @@ bool = isAccessorArray( new Uint8Array( 10 ) );
125125bool = isAccessorArray ( new Uint8ClampedArray ( 10 ) );
126126// returns false
127127
128- bool = isAccessorArray ({ ' length' : 0 });
128+ bool = isAccessorArray ( { ' length' : 0 } );
129129// returns false
130130```
131131
Original file line number Diff line number Diff line change 1616* limitations under the License.
1717*/
1818
19- /* eslint-disable object-curly-newline */
19+ /* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing */
2020
2121'use strict' ;
2222
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ var bool = isBooleanArray( arr );
6666
6767## Examples
6868
69- <!-- eslint-disable object-curly-newline -->
69+ <!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
7070
7171<!-- eslint no-undef: "error" -->
7272
@@ -124,7 +124,7 @@ bool = isBooleanArray( new Uint8Array( 10 ) );
124124bool = isBooleanArray ( new Uint8ClampedArray ( 10 ) );
125125// returns false
126126
127- bool = isBooleanArray ({ ' length' : 0 });
127+ bool = isBooleanArray ( { ' length' : 0 } );
128128// returns false
129129```
130130
Original file line number Diff line number Diff line change 1616* limitations under the License.
1717*/
1818
19- /* eslint-disable object-curly-newline */
19+ /* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing */
2020
2121'use strict' ;
2222
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ var bool = isComplexTypedArray( arr );
6666
6767## Examples
6868
69- <!-- eslint-disable object-curly-newline -->
69+ <!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
7070
7171<!-- eslint no-undef: "error" -->
7272
@@ -120,7 +120,7 @@ bool = isComplexTypedArray( new Uint8Array( 10 ) );
120120bool = isComplexTypedArray ( new Uint8ClampedArray ( 10 ) );
121121// returns false
122122
123- bool = isComplexTypedArray ({ ' length' : 0 });
123+ bool = isComplexTypedArray ( { ' length' : 0 } );
124124// returns false
125125```
126126
Original file line number Diff line number Diff line change 1616* limitations under the License.
1717*/
1818
19- /* eslint-disable object-curly-newline */
19+ /* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing */
2020
2121'use strict' ;
2222
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ var bool = isComplex128Array( arr );
6666
6767## Examples
6868
69- <!-- eslint-disable object-curly-newline -->
69+ <!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
7070
7171<!-- eslint no-undef: "error" -->
7272
@@ -120,7 +120,7 @@ bool = isComplex128Array( new Uint8Array( 10 ) );
120120bool = isComplex128Array ( new Uint8ClampedArray ( 10 ) );
121121// returns false
122122
123- bool = isComplex128Array ({ ' length' : 0 });
123+ bool = isComplex128Array ( { ' length' : 0 } );
124124// returns false
125125```
126126
Original file line number Diff line number Diff line change 1616* limitations under the License.
1717*/
1818
19- /* eslint-disable object-curly-newline */
19+ /* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing */
2020
2121'use strict' ;
2222
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ var bool = isComplex64Array( arr );
6666
6767## Examples
6868
69- <!-- eslint-disable object-curly-newline -->
69+ <!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
7070
7171<!-- eslint no-undef: "error" -->
7272
@@ -120,7 +120,7 @@ bool = isComplex64Array( new Uint8Array( 10 ) );
120120bool = isComplex64Array ( new Uint8ClampedArray ( 10 ) );
121121// returns false
122122
123- bool = isComplex64Array ({ ' length' : 0 });
123+ bool = isComplex64Array ( { ' length' : 0 } );
124124// returns false
125125```
126126
You can’t perform that action at this time.
0 commit comments