Jaypore CI

> Jaypore CI: Minimal, Offline, Local CI system.
Log | Files | Refs | README | LICENSE

index.js (199B)


      1 /**
      2  * A tiny demo module for the sub-pipeline example.
      3  */
      4 
      5 function add(a, b) {
      6   return a + b;
      7 }
      8 
      9 function greet(name) {
     10   return `Hello, ${name || "world"}!`;
     11 }
     12 
     13 module.exports = { add, greet };