-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.hbs
30 lines (26 loc) · 816 Bytes
/
main.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Functional Programming Practice
This repository includes array, collection, object and other example manupulations using functional programming practices. Most of the excercises were mentioned [here](https://gist.github.com/oskarkv/3168ea3f8d7530ccd94c97c19aafe266)
## Getting Started
To clone this repository
```
git clone https://github.com/ansaries/fp.git
```
Then run
```
npm install
```
I have used **parcel** for packaging and hot reload, so to run it use
```
parcel ./src/index.html
```
or just type in your console
```
npm start
```
# API Index
{{>main-index~}}
## API Description
{{>all-docs~}}
## Heads Up
Its personal level excercise, I tried to use vanilla to show values on Browser in a very weired manner.
Just use it for inspiration, all methods and examples are not recommended for production.