Skip to content

Instantly share code, notes, and snippets.

View MuhAssar's full-sized avatar
🌙
Doing the required!

Muhamad Assar MuhAssar

🌙
Doing the required!
  • Wursha Apps
  • Egypt
View GitHub Profile
@3assy2018
3assy2018 / Pipeline.js
Created July 4, 2020 09:37
This code implements pipeline pattern using ES6. It is inspired by Laravel Framework pipeline pattern.
export default class Pipeline {
passable = null;
pipes = [];
method = 'handle';
send = (passable) => {