Comparing version 0.2.0 to 0.2.1
{ | ||
"name": "lists", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "A library of higher-order functions modeled after Haskell's Data.List module", | ||
@@ -5,0 +5,0 @@ "main": "lists.min.js", |
@@ -17,2 +17,19 @@ # [ l [ i [ s ] t ] s ] | ||
Using in your Node.js project: | ||
```js | ||
var lists = require('lists'); | ||
``` | ||
Using in your browser: | ||
Download the script source file `lists.min.js` and include it in your HTML. Lists is exported as a global object attached to `window`. Access functions by calling `lists` or `window.lists`. | ||
```html | ||
<script src='lists.min.js'></script> | ||
<script> | ||
lists.head(["Hey!"]); // "Hey!" | ||
</script> | ||
``` | ||
## Practical Example Usage | ||
@@ -19,0 +36,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
89323
1720