UNPKG

am-serv

Version:

AbstractMechanics is a framework developed by Andrew Chamber's small group of side projects called Katana Development. Its meant to have a small small footprint, be easy to use, yet powerfull when developing complex websites, and web-applications.

17 lines (9 loc) 157 B
function testCb(x, y, callback) { callback(x, y); } testCb(1, 2, (x, y)=>{ console.log(x); console.log(x); console.log(x + y); })