Projektstart

This commit is contained in:
2026-01-22 15:49:12 +01:00
parent 7212eb6f7a
commit 57e5f652f8
10637 changed files with 2598792 additions and 64 deletions

20
backend/node_modules/fastfall/example.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
'use strict'
var fall = require('./')()
fall([
function a (cb) {
console.log('called a')
cb(null, 'a')
},
function b (a, cb) {
console.log('called b with:', a)
cb(null, 'a', 'b')
},
function c (a, b, cb) {
console.log('called c with:', a, b)
cb(null, 'a', 'b', 'c')
}
], function result (err, a, b, c) {
console.log('result arguments', err, a, b, c)
})