resume-client-socket.io
Version:
Resume Client API for Socket.IO and Node.JS - Medical Speech to Summarized Text
16 lines (12 loc) • 328 B
JavaScript
module.exports = function(list) {
if (list.constructor !== Array) {
throw new Error('Item passed to .examples is not an array')
}
for (const item of list) {
const usage = item.usage || false
const description = item.description || false
this.example(usage, description)
}
return this
}