Basic design patterns for TypeScript.
This project is under development and may make breaking changes in minor versions until 1.0.
npm install typed-patterns
source/examples/behavioral/chain-of-responsibility
success(callback, ...result)
calls specified callback as successful with array of resultsfail(callback, error)
calls specified callback as failed with specified errorjoin(onSuccess, onError)
builds classical callback function from two success-callback and error-callbackwrapCallback(callback)
builds callback function that wraps array of success results into single tupleunwrapCallback(callback)
builds callback function that unwraps single tuple to an array of success resultswrapWorker(worker)
builds asynchronous worker function that wraps array of results into single tupleunwrapWorker(worker)
builds asynchronous worker function that unwraps single result to an array of resultscollect(workersCollection)
builds asynchronous worker that collects results from all passed workersguardAsyncProcessor(guard, processor)
builds asynchronous processor responsible only for type-guarded contextguardPromiseProcessor(guard, processor)
builds asynchronous processor responsible only for type-guarded contextclass Unexpected
Base class of unexpected context exceptionunexpected(message?, callback?, next?)
Calls next (if specified) or passes Unexpected exception to callback (if specified)Generated using TypeDoc