UNPKG

cloud-red

Version:

Serverless Node-RED for your cloud integration needs

9 lines (7 loc) 220 B
// A test node that exports a function which returns a rejecting promise var when = require("when"); module.exports = function(RED) { return when.promise(function(resolve,reject) { reject("fail"); }); }