Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/OpenAF/oafp
Browse files Browse the repository at this point in the history
  • Loading branch information
nmaguiar committed Feb 17, 2024
2 parents c44fdf8 + 9ad5166 commit 0bc8f43
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/include/outputFns.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,12 @@ var _outputFns = new Map([
$o(r, options)
}],
["ctable", (r, options) => {
if (!isArray(r)) _exit(-1, "ctable is only supported for arrays/lists")
$o(r, options)
}],
["stable", (r, options) => {
if (!isArray(r)) _exit(-1, "stable is only supported for arrays/lists")
$o(r, options)
}],
["table", (r, options) => {
if (!isArray(r)) _exit(-1, "table is only supported for arrays/lists")
$o(r, options)
}],
["log", (r, options) => {
Expand Down Expand Up @@ -192,4 +189,4 @@ var _outputFns = new Map([
}
}
}]
])
])

0 comments on commit 0bc8f43

Please sign in to comment.