
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
split ported to pull-stream style.
var pull = require('pull-stream')
var split = require('pull-split')
pull(
textStream
split(),
output
)
if the textStream is buffers, and contain UTF8
(it probably will if you have german or chinese friends, etc)
then you MUST use this with pull-utf8-decoder
var pull = require('pull-stream')
var split = require('pull-split')
var utf8 = require('pull-utf8-decoder')
pull(
textStream
utf8(),
split(),
output
)
unit to split by, defaults to \n
function to apply to each line matched.
if true, emit lines in reverse. use this if the input is a file you are reading backwards.
use this to skip the last value if it is and empty string ''
if this is not set then the behavior is the same as String#split
MIT
FAQs
split ported to pull-stream style
We found that pull-split demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.