
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
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
The npm package pull-split receives a total of 1,843 weekly downloads. As such, pull-split popularity was classified as popular.
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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.