UNPKG
stromjs
Version:
latest (0.5.5)
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
Dependency-free streams utils for Node.js
github.com/lewisdiamond/stromjs
lewisdiamond/stromjs
stromjs
/
dist
/
functions
/
split.d.ts
5 lines
(4 loc)
•
249 B
TypeScript
View Raw
1
2
3
4
5
/// <reference types="node" />
import
{
Transform
,
TransformOptions
}
from
"stream"
;
import
{
WithEncoding
}
from
"./baseDefinitions"
;
export
declare
function
split
(
separator
?:
string
|
RegExp
,
options
?:
WithEncoding
&
TransformOptions
):
Transform
;