
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
windlike-utils
Advanced tools
Windlike-Utils is a tool library developed based on functional programming ideas.
Windlike-Utils is a tool library developed based on functional programming ideas.
array、object、string and so on.It can be easily found and used.y=f(x) in mathematics.As long as x is unchanged, the output y is also unchanged.To ensure the uniqueness of the output and the reusability of the variables, Some dirty functions also do delayed output processing.For examples, number.random returns a function which can generate a random number, instead of the result of the random number.npm install windlike-utils --save
Format date:
const ms = 837043200000; // 1996-07-11 08:00:00
utils.date.createFormatDate("YYYY-MM-DD hh:mm:ss w")(ms); // 1996-07-11 08:00:00 Thur.
utils.date.createFormatDate("YY-MM-DD hh:mm:ss W")(ms); // 96-07-11 08:00:00 星期四
Currying
const add = (a: number, b: number, c: number): number => a + b + c;
const curryAdd: any = utils.fn.curry(add);
curryAdd(1, 2, 3); // 6
curryAdd(1, 2)(4); // 7
curryAdd(1)(3)(5); // 9
curryAdd(1)(2, 3); // 6
Parse Url
const URL = 'https://github.com/MrWindlike/Windlike-Utils?key=value';
const result = utils.net.parseUrl(URL);
// {
// url: URL,
// host: 'https://github.com',
// port: 80,
// path: '/MrWindlike/Windlike-Utils',
// params: {
// key: 'value',
// },
// }
Open an issue or PR.😄
FAQs
Windlike-Utils is a tool library developed based on functional programming ideas.
The npm package windlike-utils receives a total of 2 weekly downloads. As such, windlike-utils popularity was classified as not popular.
We found that windlike-utils 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.