Function for handling script errors
npm install @spongex/script-errorInstall to your existing project using:
```
npm i @spongex/script-error
Include ECMAScript:
``
import { scriptError } from '@spongex/script-error'
Include CommonJS:
``
const { scriptError } = require('@spongex/script-error')
Exit script with a code of 1:
``
scriptError('Something went wrong!')
Don't exit script and use a custom return code:
``
scriptError('Error handler', { exit: false, code: 100 })
End script with a custom error code:
```
scriptError('Something bad happened!', { code: 200 })