An open API service indexing awesome lists of open source software.

https://github.com/ken107/scope-functions

Scope functions for JavaScript, inspired by Kotlin
https://github.com/ken107/scope-functions

javascript scope-functions

Last synced: about 1 month ago
JSON representation

Scope functions for JavaScript, inspired by Kotlin

Awesome Lists containing this project

README

          

### Usage

```typescript
import "scope-functions";

let myObj = {a:1}.also(console.log);

let myNumber = {a:1}.let(x => x.a);
```