name: function
ns: utils
async: true
description: 'Execute a function'
phrases:
  active: 'Executing Function '
ports:
  input:
    in:
      type: any
      async: true
      title: 'Function Input'
    fn:
      type: function
      args:
        - data
        - output
      title: 'Function Body'
  output:
    out:
      title: 'Std Out'
      type: string
    error:
      title: Error
      type: object
fn: "on.input.in = function() {\n  $.fn($.in, output);\n}\n"
