@thi.ng/compose
Advanced tools
Comparing version 1.3.5 to 1.3.6
@@ -6,2 +6,10 @@ # Change Log | ||
## [1.3.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@1.3.5...@thi.ng/compose@1.3.6) (2019-11-30) | ||
**Note:** Version bump only for package @thi.ng/compose | ||
## [1.3.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@1.3.4...@thi.ng/compose@1.3.5) (2019-11-09) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@thi.ng/compose", | ||
"version": "1.3.5", | ||
"description": "Arity-optimized functional composition helpers", | ||
"version": "1.3.6", | ||
"description": "Optimized functional composition helpers", | ||
"module": "./index.js", | ||
@@ -21,19 +21,22 @@ "main": "./lib/index.js", | ||
"build:test": "rimraf build && tsc -p test/tsconfig.json", | ||
"test": "yarn build:test && mocha build/test/*.js", | ||
"cover": "yarn build:test && nyc mocha build/test/*.js && nyc report --reporter=lcov", | ||
"test": "mocha test", | ||
"cover": "nyc mocha test && nyc report --reporter=lcov", | ||
"clean": "rimraf *.js *.d.ts .nyc_output build coverage doc lib", | ||
"doc": "node_modules/.bin/typedoc --mode modules --out doc --ignoreCompilerErrors src", | ||
"doc:readme": "../../scripts/generate-readme", | ||
"doc": "node_modules/.bin/typedoc --mode modules --out doc src", | ||
"pub": "yarn build:release && yarn publish --access public" | ||
}, | ||
"devDependencies": { | ||
"@istanbuljs/nyc-config-typescript": "^0.1.3", | ||
"@types/mocha": "^5.2.6", | ||
"@types/node": "^12.6.3", | ||
"mocha": "^6.1.4", | ||
"@types/node": "^12.12.11", | ||
"mocha": "^6.2.2", | ||
"nyc": "^14.0.0", | ||
"typedoc": "^0.15.0", | ||
"typescript": "^3.6.4" | ||
"ts-node": "^8.5.2", | ||
"typedoc": "^0.15.2", | ||
"typescript": "^3.7.2" | ||
}, | ||
"dependencies": { | ||
"@thi.ng/api": "^6.5.0", | ||
"@thi.ng/errors": "^1.2.1" | ||
"@thi.ng/api": "^6.6.0", | ||
"@thi.ng/errors": "^1.2.2" | ||
}, | ||
@@ -50,3 +53,3 @@ "keywords": [ | ||
"sideEffects": false, | ||
"gitHead": "97add769f24aa32a1a5e13c5c941605e1b9eb569" | ||
"gitHead": "36c4d9e967bd80ccdbfa0f4a42f594080f95f105" | ||
} |
@@ -0,1 +1,3 @@ | ||
<!-- This file is generated - DO NOT EDIT! --> | ||
# @thi.ng/compose | ||
@@ -10,25 +12,18 @@ | ||
<!-- TOC depthFrom:2 depthTo:3 --> | ||
- [About](#about) | ||
- [Status](#status) | ||
- [Installation](#installation) | ||
- [Dependencies](#dependencies) | ||
- [API](#api) | ||
- [Authors](#authors) | ||
- [License](#license) | ||
- [About](#about) | ||
- [Installation](#installation) | ||
- [Dependencies](#dependencies) | ||
- [Usage examples](#usage-examples) | ||
- [Authors](#authors) | ||
- [License](#license) | ||
## About | ||
<!-- /TOC --> | ||
Optimized functional composition helpers. | ||
## About | ||
### Status | ||
Functional composition helpers: | ||
**STABLE** - used in production | ||
- [comp()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/comp.ts) | ||
- [compL()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/comp.ts#L52) | ||
- [juxt()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/juxt.ts) | ||
- [partial()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/partial.ts) | ||
- [threadFirst()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/thread-first.ts) | ||
- [threadLast()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/thread-last.ts) | ||
- [trampoline()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/trampoline.ts) | ||
## Installation | ||
@@ -42,17 +37,23 @@ | ||
- [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/master/packages/api) | ||
- [@thi.ng/errors](https://github.com/thi-ng/umbrella/tree/master/packages/errors) | ||
- [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/master/packages/api) | ||
- [@thi.ng/errors](https://github.com/thi-ng/umbrella/tree/master/packages/errors) | ||
## Usage examples | ||
## API | ||
```ts | ||
import { comp, compL, juxt } from "@thi.ng/compose"; | ||
``` | ||
[Generated API docs](https://docs.thi.ng/umbrella/compose/) | ||
- [comp()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/comp.ts) | ||
- [compL()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/comp.ts#L52) | ||
- [juxt()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/juxt.ts) | ||
- [partial()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/partial.ts) | ||
- [threadFirst()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/thread-first.ts) | ||
- [threadLast()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/thread-last.ts) | ||
- [trampoline()](https://github.com/thi-ng/umbrella/tree/master/packages/compose/src/trampoline.ts) | ||
## Authors | ||
- Karsten Schmidt | ||
Karsten Schmidt | ||
## License | ||
© 2018 Karsten Schmidt // Apache Software License 2.0 | ||
© 2016 - 2019 Karsten Schmidt // Apache Software License 2.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
77249
48
58
8
Updated@thi.ng/api@^6.6.0
Updated@thi.ng/errors@^1.2.2