simple-concat

WebJar for simple-concat

Лицензия

Лицензия

MIT
Группа

Группа

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

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

simple-concat
Последняя версия

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

1.0.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

simple-concat
WebJar for simple-concat
Ссылка на сайт

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

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

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

https://github.com/feross/simple-concat

Скачать simple-concat

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

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

Зависимости

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

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

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

simple-concat travis npm downloads javascript style guide

Super-minimalist version of concat-stream. Less than 15 lines!

install

npm install simple-concat

usage

This example is longer than the implementation.

var s = new stream.PassThrough()
concat(s, function (err, buf) {
  if (err) throw err
  console.error(buf)
})
s.write('abc')
setTimeout(function () {
  s.write('123')
}, 10)
setTimeout(function () {
  s.write('456')
}, 20)
setTimeout(function () {
  s.end('789')
}, 30)

license

MIT. Copyright (c) Feross Aboukhadijeh.

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

Версия
1.0.1
1.0.0