Matis 0.1.0

Multi-level Asynchrounous Tools Interconnection System.

tools.Constant

Send a constant to its output value.

Options

The value to send as an output.

Inputs

Outputs

Example

var tool = Matis.tools.Constant(27);
tool.exec(
    {void: "any kind on input"},
    function(outputs) {
        if (outputs.value !== 27) {
            throw "IMPOSSIBLE!";
        }
    }
);