mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 05:27:15 -04:00
12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
|
/* @flow */
|
||
|
"use strict"
|
||
|
|
||
|
/**
|
||
|
* Create configurationError from text and set CLI exit code
|
||
|
*/
|
||
|
module.exports = function (text/*: string */)/* Object */ {
|
||
|
const err/*: Object*/ = new Error(text)
|
||
|
err.code = 78
|
||
|
return err
|
||
|
}
|