Comparing version 0.2.1 to 0.2.10
{ | ||
"name": "lists", | ||
"version": "0.2.1", | ||
"version": "0.2.10", | ||
"description": "A library of higher-order functions modeled after Haskell's Data.List module", | ||
@@ -5,0 +5,0 @@ "main": "lists.min.js", |
@@ -59,6 +59,7 @@ # [ l [ i [ s ] t ] s ] | ||
```js | ||
var l = require('lists'); | ||
l.transpose(l.rev(matrix)); | ||
// or using pipe (composing left) | ||
var rotate90 = l.pipe(l.transpose, l.rev) | ||
var rotate90 = l.pipe(l.transpose, l.rev); | ||
rotate90(matrix); | ||
@@ -1721,2 +1722,2 @@ | ||
``` | ||
------ | ||
------ |
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
89352
1722