Socket
Book a DemoInstallSign in
Socket

async-map-stream

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-map-stream

A version of map-stream with support for callbacks, promises, observables and streams.

1.1.1
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

async-map-stream

NPM version Downloads Build Status Coverage Status Chat Tip

A version of map-stream that supports callbacks, promises, observables, and streams. Always uses objectMode.

Install

$ npm install --save async-map-stream

Usage

var map = require('async-map-stream');

vinylFs
    .src('src/**')
    .pipe(map(function (file) {
        // make observations
        return Observable.just(file);
    }))
    .pipe(map(function (file) {
        // make promises
        return Promise.resolve(file);
    }))
    .pipe(map(function (file, cb) {
        // kick it old-school
        cb(null, file);
    }))
    .pipe(vinylFs.dest('dist'));

API

map([options,] transform [, flush]) : TransformStream

See the through2 documentation for all possible options and arguments.

transform(data [, cb])

flush([cb])

See the async-done documentation for all possible arguments and return types.

Test

$ npm test

Contribute

Tasks

Standards for this project, including tests, code coverage, and semantics are enforced with a build tool. Pull requests must include passing tests with 100% code coverage and no linting errors.

© 2015 Shannon Moeller me@shannonmoeller.com

Licensed under MIT

Keywords

async

FAQs

Package last updated on 23 Oct 2015

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

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.