UNPKG

wingbot

Version:

Enterprise Messaging Bot Conversation Engine

14 lines (11 loc) 221 B
/* * @author David Menger */ 'use strict'; function path (params) { if (typeof params.path !== 'string') { throw new Error('Missing path parameter'); } return params.path; } module.exports = path;