function coerceIntoArray( x ) { if ( Array.isArray( x ) === false ) { return [ x ]; } else { return x; } } module.exports = coerceIntoArray;