INNER CODE UNIT · JavaScript

job

csfloat/inspect · index.js:164

    const job = new Job(req, res, /* bulk */ false);

    let price;

    if (canSubmitPrice(req.query.priceKey, link, req.query.price)) {
        price = parseInt(req.query.price);
    }

    job.add(link, price);

    try {
        handleJob(job);
    } catch (e) {
        winston.warn(e);
        errors.GenericBad.respond(res);
    }
});

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…