You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
414 B
17 lines
414 B
4 years ago
|
'use strict';
|
||
|
|
||
|
var PACKAGE_NAME = require('../../package.json').name;
|
||
|
|
||
|
/**
|
||
|
* Get an Error instance for the given message
|
||
|
* @param {...*} message Any number of message arguments
|
||
|
* @returns {Error}
|
||
|
*/
|
||
|
function getError() {
|
||
|
var message = (PACKAGE_NAME + ':\n' + Array.prototype.slice.call(arguments).join(' '))
|
||
|
.split(/\s*\n\s*/)
|
||
|
.join('\n ');
|
||
|
return new Error(message);
|
||
|
}
|
||
|
|
||
|
module.exports = getError;
|