
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.
@saroamirkhanyan/ranges
Advanced tools
Ranges is a JavaScript library for working with ranges and iterators using beauty of Functional Programming
This code prints all even numbers between 0 and 100 which are also root of integer
import { flow } from 'fp-ts/function'
import { range, filter } from '@saroamirkhanyan/ranges'
const isEven = (a: number) => a % 2 === 0;
const evens = flow(
() => range(0, 100),
filter(isEven)
);
const isRoot = flow(Math.sqrt, Number.isInteger);
const evenRoots = flow(
evens,
filter(isRoot)
);
for(const a of evenRoots()) {
console.log(a);
}
FAQs
TypeScript library for ranges
We found that @saroamirkhanyan/ranges 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.