from

WebJar for from

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

from
Последняя версия

Последняя версия

0.1.7
Дата

Дата

Тип

Тип

jar
Описание

Описание

from
WebJar for from
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/dominictarr/from

Скачать from

Имя Файла Размер
from-0.1.7.pom
from-0.1.7.jar 6 KB
from-0.1.7-sources.jar 22 bytes
from-0.1.7-javadoc.jar 22 bytes
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/from/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>from</artifactId>
    <version>0.1.7</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/from/
implementation 'org.webjars.npm:from:0.1.7'
// https://jarcasting.com/artifacts/org.webjars.npm/from/
implementation ("org.webjars.npm:from:0.1.7")
'org.webjars.npm:from:jar:0.1.7'
<dependency org="org.webjars.npm" name="from" rev="0.1.7">
  <artifact name="from" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='from', version='0.1.7')
)
libraryDependencies += "org.webjars.npm" % "from" % "0.1.7"
[org.webjars.npm/from "0.1.7"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

TravisCI Build Status

from

An easy way to create a readable Stream.

from(function getChunk(count, next))

from takes a getChunk function and returns a stream.

getChunk is called again and again, after each time the user calls next(), until the user emits 'end'

if pause() is called, the getChunk won't be called again untill resume() is called.

var from = require('from')

var stream = 
  from(function getChunk(count, next) {
    //do some sort of data
    this.emit('data', whatever)
    
    if(itsOver)
      this.emit('end')

    //ready to handle the next chunk
    next()
    //or, if it's sync:
    return true 
  })

from(array)

from also takes an Array whose elements it emits one after another.

License

MIT / Apache2

Версии библиотеки

Версия
0.1.7
0.1.3