🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@stdlib/assert-has-async-iterator-symbol-support

Package Overview
Dependencies
Maintainers
4
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stdlib/assert-has-async-iterator-symbol-support

Detect native Symbol.asyncIterator support.

Source
npmnpm
Version
0.0.8
Version published
Weekly downloads
77
381.25%
Maintainers
4
Weekly downloads
 
Created
Source

Async Iterator Symbol Support

NPM version Build Status Coverage Status

Detect native Symbol.asyncIterator support.

Installation

npm install @stdlib/assert-has-async-iterator-symbol-support

Usage

var hasAsyncIteratorSymbolSupport = require( '@stdlib/assert-has-async-iterator-symbol-support' );

hasAsyncIteratorSymbolSupport()

Detects if a runtime environment supports ES2018 Symbol.asyncIterator.

var bool = hasAsyncIteratorSymbolSupport();
// returns <boolean>

Examples

var hasAsyncIteratorSymbolSupport = require( '@stdlib/assert-has-async-iterator-symbol-support' );

var bool = hasAsyncIteratorSymbolSupport();
if ( bool ) {
    console.log( 'Environment has Symbol.asyncIterator support.' );
} else {
    console.log( 'Environment lacks Symbol.asyncIterator support.' );
}

CLI

Installation

To use the module as a general utility, install the module globally

npm install -g @stdlib/assert-has-async-iterator-symbol-support

Usage

Usage: has-async-iterator-symbol-support [options]

Options:

  -h,    --help                Print this message.
  -V,    --version             Print the package version.

Examples

$ has-async-iterator-symbol-support
<boolean>

See Also

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat

License

See LICENSE.

Copyright © 2016-2022. The Stdlib Authors.

Keywords

stdlib

FAQs

Package last updated on 16 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts