Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Aug 13, 2021
1 parent 3f829b2 commit 7bc7052
Show file tree
Hide file tree
Showing 30 changed files with 1,518 additions and 10 deletions.
125 changes: 125 additions & 0 deletions has-arrow-function-support/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
<!--
@license Apache-2.0
Copyright (c) 2021 The Stdlib Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

# Arrow Function Support

> Detect native [`arrow function`][arrow-function] support.
<section class="usage">

## Usage

```javascript
var hasArrowFunctionSupport = require( '@stdlib/assert/has-arrow-function-support' );
```

#### hasArrowFunctionSupport()

Detects if a runtime environment supports ES2015 [`arrow functions`][arrow-function]` such as `( a, b ) => a + b`, `x => x`, or `( x ) => { return x*x; }`.

```javascript
var bool = hasArrowFunctionSupport();
// returns <boolean>
```

</section>

<!-- /.usage -->

<section class="notes">

## Notes

- The implementation uses code evaluation, which may be problematic in browser contexts enforcing a strict [content security policy][mdn-csp] (CSP).

</section>

<!-- /.notes -->

<section class="examples">

## Examples

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

```javascript
var hasArrowFunctionSupport = require( '@stdlib/assert/has-arrow-function-support' );

var bool = hasArrowFunctionSupport();
if ( bool ) {
console.log( 'Environment has native arrow function support.' );
} else {
console.log( 'Environment lacks native arrow function support.' );
}
```

</section>

<!-- /.examples -->

* * *

<section class="cli">

## CLI

<section class="usage">

### Usage

```text
Usage: has-arrow-function-support [options]
Options:
-h, --help Print this message.
-V, --version Print the package version.
```

</section>

<!-- /.usage -->

<section class="examples">

### Examples

```bash
$ has-arrow-function-support
<boolean>
```

</section>

<!-- /.examples -->

</section>

<!-- /.cli -->

<section class="links">

[arrow-function]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions

[mdn-csp]: https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP

</section>

<!-- /.links -->
50 changes: 50 additions & 0 deletions has-arrow-function-support/benchmark/benchmark.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2021 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

// MODULES //

var bench = require( '@stdlib/bench' );
var isBoolean = require( './../../is-boolean' ).isPrimitive;
var pkg = require( './../package.json' ).name;
var hasArrowFunctionSupport = require( './../lib' );


// MAIN //

bench( pkg, function benchmark( b ) {
var bool;
var i;

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
// Note: the following *could* be optimized away via loop-invariant code motion. If so, the entire loop will disappear.
bool = hasArrowFunctionSupport();
if ( !isBoolean( bool ) ) {
b.fail( 'should return a boolean' );
}
}
b.toc();
if ( isBoolean( bool ) ) {
b.pass( 'benchmark finished' );
} else {
b.fail( 'should return a boolean' );
}
b.end();
});
60 changes: 60 additions & 0 deletions has-arrow-function-support/bin/cli
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
#!/usr/bin/env node

/**
* @license Apache-2.0
*
* Copyright (c) 2 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

// MODULES //

var resolve = require( 'path' ).resolve;
var readFileSync = require( '@stdlib/fs/read-file' ).sync;
var CLI = require( '@stdlib/cli/ctor' );
var detect = require( './../lib' );


// MAIN //

/**
* Main execution sequence.
*
* @private
*/
function main() {
var flags;
var cli;

// Create a command-line interface:
cli = new CLI({
'pkg': require( './../package.json' ),
'options': require( './../etc/cli_opts.json' ),
'help': readFileSync( resolve( __dirname, '..', 'docs', 'usage.txt' ), {
'encoding': 'utf8'
})
});

// Get any provided command-line options:
flags = cli.flags();
if ( flags.help || flags.version ) {
return;
}

console.log( detect() ); // eslint-disable-line no-console
}

main();
17 changes: 17 additions & 0 deletions has-arrow-function-support/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

{{alias}}()
Tests whether an environment supports native arrow functions.

Returns
-------
bool: boolean
Boolean indicating if an environment support arrow functions.

Examples
--------
> var bool = {{alias}}()
<boolean>

See Also
--------

35 changes: 35 additions & 0 deletions has-arrow-function-support/docs/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* @license Apache-2.0
*
* Copyright (c) 2021 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

// TypeScript Version: 2.0

/**
* Tests for native arrow function support.
*
* @returns boolean indicating if an environment has native arrow function support
*
* @example
* var bool = hasArrowFunctionSupport();
* // returns <boolean>
*/
declare function hasArrowFunctionSupport(): boolean;


// EXPORTS //

export = hasArrowFunctionSupport;
33 changes: 33 additions & 0 deletions has-arrow-function-support/docs/types/test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*
* @license Apache-2.0
*
* Copyright (c) 2021 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import hasArrowFunctionSupport = require( './index' );


// TESTS //

// The function returns a boolean...
{
hasArrowFunctionSupport(); // $ExpectType boolean
}

// The compiler throws an error if the function is provided arguments...
{
hasArrowFunctionSupport( true ); // $ExpectError
hasArrowFunctionSupport( [], 123 ); // $ExpectError
}
7 changes: 7 additions & 0 deletions has-arrow-function-support/docs/usage.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

Usage: has-arrow-function-support [options]

Options:

-h, --help Print this message.
-V, --version Print the package version.
14 changes: 14 additions & 0 deletions has-arrow-function-support/etc/cli_opts.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"boolean": [
"help",
"version"
],
"alias": {
"help": [
"h"
],
"version": [
"V"
]
}
}
28 changes: 28 additions & 0 deletions has-arrow-function-support/examples/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2021 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

var hasArrowFunctionSupport = require( './../lib' );

var bool = hasArrowFunctionSupport();
if ( bool ) {
console.log( 'Environment has native arrow function support.' );
} else {
console.log( 'Environment lacks native arrow function support.' );
}
Loading

0 comments on commit 7bc7052

Please sign in to comment.