node-vitals
Version:
Do more with less. A simple, high-performing, functional JavaScript library.
57 lines (46 loc) • 1.86 kB
JavaScript
/**
* -----------------------------------------------------------------------------
* VITALS JS - NODE VERSION - STRICT 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';
// *****************************************************************************
// PRIVATE HELPERS
// *****************************************************************************
// INSERT methods/helpers/clone-obj.js
// INSERT methods/helpers/in-str.js
// INSERT methods/helpers/is.js
// INSERT methods/helpers/match.js
// INSERT methods/helpers/merge.js
// INSERT methods/helpers/new-error-maker.js
// INSERT methods/helpers/own.js
// INSERT methods/helpers/slice-arr.js
// INSERT methods/helpers/split-keys.js
// INSERT methods/is.js
// *****************************************************************************
// SECTION: STRICT METHODS
// *****************************************************************************
// INSERT methods/amend.js
// INSERT methods/create.js
// INSERT methods/freeze.js
// INSERT methods/seal.js
// *****************************************************************************
// SECTION: END
// *****************************************************************************
module.exports = {
amend: amend,
create: create,
freeze: freeze,
seal: seal
};