1.0.2 • Published 4 years ago

bentinabeakley v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Bentina Beakley!

I basically curry functions in a super opinionated way. I originally made this inside of boulangerie, but found i was using this function more than that module....so, i made it.

You can pass in sync, or async functions.

const currier = require('bentinabeakley');

const buildAdapterFunc = (build, service, output) => {
  const totalArray = [...build, ...service, ...output];
  return async initialParam => currier(initialParam).chain(totalArray).execute();
};

await buildAdapterFunc(
  [
    async () => {
      console.log('a build step');
    },
  ],
  [
    () => {
      console.log('a service step');
    },
  ],
  [
    () => {
      console.log('an output step');
    },
    () => true,
  ]
); // returns true
1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago