Skip to content

Commit 6f72b69

Browse files
committed
Auto-generated commit
1 parent ac5b0e4 commit 6f72b69

File tree

6 files changed

+14
-2
lines changed

6 files changed

+14
-2
lines changed

has-sharedarraybuffer-support/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ var hasSharedArrayBufferSupport = require( '@stdlib/assert/has-sharedarraybuffer
3636

3737
Detects if a runtime environment supports [`SharedArrayBuffer`][mdn-sharedarraybuffer].
3838

39+
<!-- eslint-disable id-length -->
40+
3941
```javascript
4042
var bool = hasSharedArrayBufferSupport();
4143
// returns <boolean>

is-arrow-function/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var isArrowFunction = require( '@stdlib/assert/is-arrow-function' );
3434

3535
Tests if a `value` is a an [`arrow function`][mdn-arrow-function] such as `( a, b ) => a + b`, `x => x`, or `( x ) => { return x*x; }`.
3636

37-
<!-- eslint-disable func-style, no-restricted-syntax -->
37+
<!-- eslint-disable func-style, no-restricted-syntax, node/no-unsupported-features/es-syntax -->
3838

3939
```javascript
4040
var beep = () => {
@@ -60,7 +60,7 @@ bool = isArrowFunction( boop );
6060

6161
## Examples
6262

63-
<!-- eslint-disable func-style, no-restricted-syntax, no-empty-function -->
63+
<!-- eslint-disable func-style, no-restricted-syntax, no-empty-function, node/no-unsupported-features/es-syntax -->
6464

6565
<!-- eslint no-undef: "error" -->
6666

is-regexp/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ bool = isRegExp( {} );
5050

5151
## Examples
5252

53+
<!-- eslint-disable prefer-regex-literals -->
54+
5355
<!-- eslint no-undef: "error" -->
5456

5557
```javascript

is-same-native-class/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,12 @@ bool = isSameNativeClass( [], {} );
5656

5757
## Examples
5858

59+
<!-- eslint-disable no-new-wrappers -->
60+
5961
<!-- eslint no-undef: "error" -->
6062

6163
```javascript
64+
var Number = require( '@stdlib/number/ctor' );
6265
var isSameNativeClass = require( '@stdlib/assert/is-same-native-class' );
6366

6467
var bool = isSameNativeClass( 3.14, new Number( 3.14 ) );

is-symbol-array/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ bool = isSymbolArray( [ 'beep', 'boop' ] );
4949
Tests if a `value` is an array-like object containing only [`symbol`][mdn-symbol] primitives.
5050

5151
```javascript
52+
var Object = require( '@stdlib/object/ctor' );
5253
var Symbol = require( '@stdlib/symbol/ctor' );
5354

5455
var bool = isSymbolArray.primitives( [ Symbol( 'beep' ), Symbol( 'boop' ) ] );
@@ -63,6 +64,7 @@ bool = isSymbolArray.primitives( [ Symbol( 'beep' ), Object( Symbol( 'boop' ) )
6364
Tests if a `value` is an array-like object containing only [`Symbol`][mdn-symbol] objects.
6465

6566
```javascript
67+
var Object = require( '@stdlib/object/ctor' );
6668
var Symbol = require( '@stdlib/symbol/ctor' );
6769

6870
var bool = isSymbolArray.objects( [ Object( Symbol( 'beep' ) ), Object( Symbol( 'boop' ) ) ] );

is-symbol/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ var isSymbol = require( '@stdlib/assert/is-symbol' );
3535
Tests if a value is a [symbol][mdn-symbol].
3636

3737
```javascript
38+
var Object = require( '@stdlib/object/ctor' );
3839
var Symbol = require( '@stdlib/symbol/ctor' );
3940

4041
var bool = isSymbol( Symbol( 'beep' ) );
@@ -49,6 +50,7 @@ bool = isSymbol( Object( Symbol( 'beep' ) ) );
4950
Tests if a `value` is a primitive [symbol][mdn-symbol].
5051

5152
```javascript
53+
var Object = require( '@stdlib/object/ctor' );
5254
var Symbol = require( '@stdlib/symbol/ctor' );
5355

5456
var bool = isSymbol.isPrimitive( Symbol( 'beep' ) );
@@ -63,6 +65,7 @@ bool = isSymbol.isPrimitive( Object( Symbol( 'boop' ) ) );
6365
Tests if a `value` is a [`Symbol`][mdn-symbol] object.
6466

6567
```javascript
68+
var Object = require( '@stdlib/object/ctor' );
6669
var Symbol = require( '@stdlib/symbol/ctor' );
6770

6871
var bool = isSymbol.isObject( Symbol( 'beep' ) );

0 commit comments

Comments
 (0)