mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 03:17:30 -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
|
|
}
|