Skip to content

JSMumps.function()

John P. Willis edited this page Mar 27, 2017 · 2 revisions

Calls a MUMPS extrinsic function.

    jsm.function(function, args, callback);

Arguments

  • function

An ECMAScript string naming the extrinsic function to be called, in the format LABEL^ROUTINE.

  • args

An ECMAScript array of arguments to pass to the extrinsic function.

  • callback

The callback function to be executed when the function call has returned via the MUMPS QUIT command, or when an error occurs. Per Node.js conventions, this callback function takes two arguments, err and data.

Clone this wiki locally