Comparing version 0.0.6 to 0.0.7
{ | ||
"name": "sloth-pipe", | ||
"description": "A pipe utility that lazily evaluates only when needed, and only once.", | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"type": "module", | ||
@@ -6,0 +6,0 @@ "main": "dist/index.js", |
@@ -6,2 +6,3 @@ ![sloth-pipe](readme-banner.png) | ||
<!-- start badges --> | ||
[![github latest release](https://badgen.net/github/tag/trvswgnr/sloth-pipe?label=latest&cache=600)](https://github.com/trvswgnr/sloth-pipe/releases/latest) | ||
@@ -13,11 +14,22 @@ [![npm version](https://badgen.net/npm/v/sloth-pipe?cache=600)](https://www.npmjs.com/package/sloth-pipe) | ||
[![open issues](https://badgen.net/github/open-issues/trvswgnr/sloth-pipe?label=issues)](https://github.com/trvswgnr/sloth-pipe/issues) | ||
![gzip size](https://img.shields.io/badge/gzip%20size-4%20KB-8A2BE2) | ||
[![minzipped size](https://img.shields.io/bundlephobia/minzip/sloth-pipe)](https://bundlephobia.com/result?p=sloth-pipe) | ||
![follow on xitter](https://img.shields.io/twitter/follow/techsavvytravvy?style=social) | ||
<!-- end badges --> | ||
Sloth Pipe is a library for TypeScript and JavaScript designed to facilitate the creation of lazy, | ||
chainable, and reusable pipes for data transformation and processing. Borrowing from functional | ||
programming paradigms, it offers a convenient and powerful way to compose functions and manage data | ||
flow in an application, with an emphasis on lazy evaluation and efficient execution. | ||
Sloth Pipe is a tiny library for TypeScript and JavaScript that lets you create lazy, chainable, and | ||
reusable pipes for data transformation and processing. Borrowing from functional programming | ||
paradigms, it offers a convenient and powerful way to compose functions and manage data flow in an | ||
application, with an emphasis on lazy evaluation and efficient execution. | ||
## Why Sloth Pipe? | ||
Developers want pipes. They've been one of the | ||
[most requested features](https://2020.stateofjs.com/en-US/opinions/#missing_from_js) in JavaScript | ||
[for years](https://2022.stateofjs.com/en-US/opinions/#top_currently_missing_from_js), and there's | ||
even a [Stage 2 proposal](https://github.com/tc39/proposal-pipeline-operator) for adding them to the | ||
language. Sloth Pipe isn't a direct replacement for the proposed pipeline operator, but it does | ||
offer a similar experience and many of the | ||
[same benefits](https://github.com/tc39/proposal-pipeline-operator#why-a-pipe-operator). | ||
## Features | ||
@@ -24,0 +36,0 @@ |
176347
127