node-vitals
Version:
Do more with less. A simple, high-performing, functional JavaScript library.
48 lines (36 loc) • 1.58 kB
JavaScript
/**
* -----------------------------------------------------------------------------
* VITALS JS - NODE VERSION - ALL METHODS
* -----------------------------------------------------------------------------
* @file A JavaScript library of utility methods designed for elegance,
* performance, and reliability.
* @version 4.1.3
* @see [vitals]{@link https://github.com/imaginate/vitals}
*
* @author Adam Smith <adam@imaginate.life> (https://github.com/imaginate)
* @copyright 2017 Adam A Smith <adam@imaginate.life> (https://github.com/imaginate)
*
* Annotations:
* @see [JSDoc3](http://usejsdoc.org)
* @see [Closure Compiler JSDoc Syntax](https://developers.google.com/closure/compiler/docs/js-for-compiler)
*/
'use strict';
var cp = require('child_process');
// *****************************************************************************
// PRIVATE HELPERS
// *****************************************************************************
// INSERT methods/helpers/is.js
// INSERT methods/helpers/new-error-maker.js
// INSERT methods/helpers/normalize.js
// INSERT methods/helpers/own.js
// INSERT methods/helpers/slice-arr.js
// *****************************************************************************
// SECTION: SHELL METHODS
// *****************************************************************************
// INSERT methods/run.js
// *****************************************************************************
// SECTION: END
// *****************************************************************************
module.exports = {
run: run
};