Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stefanwimmer128/fn128
Functional programming
https://github.com/stefanwimmer128/fn128
Last synced: 2 days ago
JSON representation
Functional programming
- Host: GitHub
- URL: https://github.com/stefanwimmer128/fn128
- Owner: stefanwimmer128
- License: isc
- Created: 2016-11-15T20:45:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-24T17:30:36.000Z (about 8 years ago)
- Last Synced: 2024-12-10T00:29:42.911Z (29 days ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/fn128
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fn128
## How to install
``` bash
npm install fn128
# or
bower install fn128
```## How to use
This library is compatible with most of the most used environments.
### Using Node / Webpack / etc.
``` javascript
const fn128 = require("fn128");
```### Using AMD (e.g. RequireJS)
``` javascript
require([ "path/to/fn128" ], function (fn128)
{
// Access fn128 in here
});
```### Use in browser
``` html
```