Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ tape( 'main export is a function', function test( t ) {

## Examples

<!-- eslint-disable node/no-unpublished-require -->
<!-- eslint-disable n/no-unpublished-require -->

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ runner( 'test*.js', opts, done );

## Examples

<!-- eslint-disable node/no-path-concat -->
<!-- eslint-disable n/no-path-concat -->

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

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/array/to-json/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ For guidance on reviving a JSON-serialized typed array, see [`reviver()`][@stdli

- The implementation provides basic support for custom typed arrays and sets the `type` field to the closest known typed array type.

<!-- eslint-disable no-restricted-syntax, no-useless-constructor, new-cap, stdlib/require-globals, node/no-unsupported-features/es-syntax -->
<!-- eslint-disable no-restricted-syntax, no-useless-constructor, new-cap, stdlib/require-globals, n/no-unsupported-features/es-syntax -->

```javascript
class CustomArray extends Float64Array() {
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/assert/is-arrow-function/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var isArrowFunction = require( '@stdlib/assert/is-arrow-function' );

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

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

```javascript
var beep = () => {
Expand All @@ -60,7 +60,7 @@ bool = isArrowFunction( boop );

## Examples

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

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

Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/assert/is-class/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var isClass = require( '@stdlib/assert/is-class' );

Tests if a value is a [`class`][mdn-class].

<!-- eslint-disable max-classes-per-file, no-restricted-syntax, node/no-unsupported-features/es-syntax -->
<!-- eslint-disable max-classes-per-file, no-restricted-syntax, n/no-unsupported-features/es-syntax -->

```javascript
var bool = isClass( class Animal {
Expand Down Expand Up @@ -68,7 +68,7 @@ bool = isClass( null );

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

<!-- eslint-disable no-restricted-syntax, no-empty-function, node/no-unsupported-features/es-syntax -->
<!-- eslint-disable no-restricted-syntax, no-empty-function, n/no-unsupported-features/es-syntax -->

```javascript
var isClass = require( '@stdlib/assert/is-class' );
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/assert/is-generator-object/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var isGeneratorObject = require( '@stdlib/assert/is-generator-object' );

Tests if a `value` is a [`generator`][mdn-generator-object] object.

<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->

```javascript
function* generateID() {
Expand Down Expand Up @@ -63,7 +63,7 @@ bool = isGeneratorObject( {} );

## Examples

<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Evaluates the continued fraction described by the supplied `generator` argument.

Using an ES6 [Generator object][es6-generator]:

<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->

```javascript
// Continued fraction for (e-1)^(-1):
Expand Down Expand Up @@ -171,7 +171,7 @@ function generator() {

## Examples

<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->

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

Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/tools/sum-series/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Computes the sum of the series given by the supplied `generator` argument. `gene

Using an ES6 [Generator object][es6-generator]:

<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->

```javascript
var pow = require( '@stdlib/math/base/special/pow' );
Expand Down Expand Up @@ -150,7 +150,7 @@ function geometricSeriesClosure( x ) {

## Examples

<!-- eslint-disable no-restricted-syntax, node/no-unsupported-features/es-syntax -->
<!-- eslint-disable no-restricted-syntax, n/no-unsupported-features/es-syntax -->

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

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/net/http-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ The function supports the following parameters:

## Examples

<!-- eslint-disable node/no-process-exit -->
<!-- eslint-disable n/no-process-exit -->

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

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/net/http2-secure-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ The function supports the following parameters:

## Examples

<!-- eslint-disable node/no-process-exit, node/no-unsupported-features/node-builtins -->
<!-- eslint-disable n/no-process-exit, n/no-unsupported-features/node-builtins -->

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

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/os/num-cpus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ var n = NUM_CPUS;

<!-- run-disable -->

<!-- eslint-disable node/no-process-exit -->
<!-- eslint-disable n/no-process-exit -->

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

Expand Down
Loading