.not_impl()
Returns a Failure object with error message: "Not Implemented".
Syntax
return scripts.lib().not_impl();
Parameters
No parameters.
Return
Failure
Not Implemented.
Same as:
{ ok: false, msg: "Not Implemented." }
Example
function(context, args) {
const l = #fs.scripts.lib();
return l.not_impl();
}