Initial hDiyanetProxy backend scaffold (Express + MySQL + Diyanet setup)
This commit is contained in:
13
node_modules/underscore/amd/pipe.js
generated
vendored
Normal file
13
node_modules/underscore/amd/pipe.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
define(['./restArguments', './reduce'], function (restArguments, reduce) {
|
||||
|
||||
function nextValue(previous, func) {
|
||||
return func(previous);
|
||||
}
|
||||
|
||||
var pipe = restArguments(function(value, funcs) {
|
||||
return reduce(funcs, nextValue, value);
|
||||
});
|
||||
|
||||
return pipe;
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user