Utility functions to convert instance methods's to context-free functions ready for use with esnext pipeline operator and point-free functional programming. Convert any x => x.whatever(1, '2', 3) to whatever(1, '2', 3)(x).
yarn add pipeyimport { createPipe, createPipes, fromClassPrototype, compose } from 'pipey';
// Note: compose is a regular lodash-like compose functionFor the proxy-based alternate api
import _ from 'pipey/proxy';