Skip to content

Commit aec10d4

Browse files
authored
Update README.md
1 parent 5f62e01 commit aec10d4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
---
88

99
<p align="center">
10-
<strong>★★★ Like this project? <a href="https://github.com/winterbe/sequency/stargazers">Leave a star</a>, <a href="https://twitter.com/winterbe_">follow on Twitter</a> or <a href="https://www.paypal.me/winterbe">donate</a> to support my work! Thanks. ★★★</strong>
10+
<strong>★★★ Like this project? <a href="https://github.com/winterbe/sequency/stargazers">Leave a star</a> and <a href="https://twitter.com/winterbe_">follow on Twitter</a>! Thanks. ★★★</strong>
1111
</p>
1212

1313
## About Sequency
1414

1515
Sequency is a lightweight (**5 KB minified**), intensely tested (**200+ tests, 99% coverage**), type-safe functional programming library for processing iterable data such as arrays, sets and maps. It's written in TypeScript, compiles to ES5-compatible JavaScript and works in all current browsers and Node applications. The API is inspired by [Sequences](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/-sequence/) from the programming language [Kotlin](https://kotlinlang.org/).
1616

17-
> Not convinced? [Try Sequency](https://npm.runkit.com/sequency) right in your browser.
17+
> [Try Sequency](https://npm.runkit.com/sequency) right in your browser.
1818
1919
## Getting started
2020

@@ -58,14 +58,14 @@ Each `Sequence` provides a fluent functional API consisting of intermediate and
5858

5959
Sequences are **lazily evaluated** to avoid examining all of the input data when it's not necessary. Sequences always perform the minimal amount of operations to gain results. E.g. in a `filter - map - find` sequence both `map` and `find` are executed just one time before returning the single result.
6060

61-
## [API documentation](https://winterbe.github.io/sequency/interfaces/_sequence_.sequence.html)
61+
## [API documentation](https://winterbe.github.io/sequency/interfaces/Sequence.html)
6262

63-
Sequency is fully documented via inline JSDoc comments. [The docs are also available online](https://winterbe.github.io/sequency/interfaces/_sequence_.sequence.html). When using an IDE like Intellij IDEA or Webstorm the docs are available inline right inside your editor.
63+
Sequency is fully documented via inline JSDoc comments. [The docs are also available online](https://winterbe.github.io/sequency/interfaces/Sequence.html). When using an IDE like Intellij IDEA or Webstorm the docs are available inline right inside your editor.
6464

6565
## Why Sequency?
6666

6767
I've built Sequency because I'm using Kotlin for server-side code but for some reasons still use TypeScript and JavaScript for client-side browser code. I find that using the same APIs for collection processing both on client and server is a huge gain in productivity for me.
6868

6969
## License
7070

71-
MIT © [Benjamin Winterberg](https://twitter.com/winterbe_)
71+
MIT © [winterbe](https://twitter.com/winterbe_)

0 commit comments

Comments
 (0)