Skip to content

Commit ac5b0e4

Browse files
committed
Auto-generated commit
1 parent 4b5dc8c commit ac5b0e4

File tree

4 files changed

+2
-9
lines changed

4 files changed

+2
-9
lines changed

has-sharedarraybuffer-support/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ 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-
4139
```javascript
4240
var bool = hasSharedArrayBufferSupport();
4341
// 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, node/no-unsupported-features/es-syntax -->
37+
<!-- eslint-disable func-style, no-restricted-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, node/no-unsupported-features/es-syntax -->
63+
<!-- eslint-disable func-style, no-restricted-syntax, no-empty-function -->
6464

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

is-regexp/README.md

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

5151
## Examples
5252

53-
<!-- eslint-disable prefer-regex-literals -->
54-
5553
<!-- eslint no-undef: "error" -->
5654

5755
```javascript

is-same-native-class/README.md

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

5757
## Examples
5858

59-
<!-- eslint-disable no-new-wrappers -->
60-
6159
<!-- eslint no-undef: "error" -->
6260

6361
```javascript
64-
var Number = require( '@stdlib/number/ctor' );
6562
var isSameNativeClass = require( '@stdlib/assert/is-same-native-class' );
6663

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

0 commit comments

Comments
 (0)