3.0.2 • Published 2 years ago

preconditions v3.0.2

Weekly downloads
1,754
License
MIT
Repository
github
Last release
2 years ago

Preconditions Library

view on npm npm module downloads Build Status Gitter

Support for Precondition error checking in Node.js

Version 2 Additions

  1. When templating / generating an error message, we must not string concat strings that are never used. Building an error message before it is needed, will take away cycles from more important tasks in the event queue. There are great performance gains to be found here if you are templating error messages.
  2. Appends Error stack traces together. If you append errors at each layer of your code, and only print the stack trace at the top most layer of your code, you will have stack traces that paint a much clearer picture when debugging. Allows you to get a more informative stack trace when using promise chains.
  3. Add debug params to stack traces to assist with bug resolution.

Install

Preconditions Interface

There are four functions that are exposed from the library.

  1. errr() - Verify a one value at a time while building an 'errr' object. You can append errors together and add debug params to the stack trace.
  2. singleton() - Verify one value at a time with a chainable preconditions interface.
  3. instance() - Create a testing suite passing in a single object. Run a single, or multiple tests on the passed in object. Shouldn't be used in production code.
  4. constructor() - Get the constructor function so you can extend the Preconditions library (see below for example). Shouldn't be used in production code.

Examples Using the Errr Interface (.errr())

You can use a static instance to verify one value at a time while using the errr module to build an errr. For more on the errr module see here https://github.com/corybill/Preconditions#errrdecorator and here https://github.com/corybill/errr#errr.

Examples Using In Promise Chain

Best practice for achieving fail fast concept when function must return promise;

Examples Using the Singleton Interface (.singleton())

You can use a static instance to verify one value at a time.

Examples Using Instance Interface (.instance())

Should not be used in production code!

Setup Instance

Examples Using The Constructor (.constructor())

Should not be used in production code!

The Preconditions object itself is exposed so that you can extend the Preconditions class.

NPM Scripts

  1. npm run test - Run linter and unit tests.
  2. npm run ut - Use Maddox to Run Unit Tests.
  3. npm run perf - Use Maddox to Performance metrics.
  4. npm run uap - Use Maddox to Unit Tests and Performance metrics.
  5. npm run lint - Run linter.
  6. npm run docs - Rebuild public API Docs.

Missing API or Bugs

Please reach out to me (Cory Parrish) if you would like a new precondition added or if you think you have found a bug.

###Known Issues 1. Release 1.0.2 has an npm install bug and has been deprecated! Please update! 2. If you are using windows and are seeing npm install issues due to the '^' in the package.json, please update node to >= (v0.10.28).

Releases

  • 2.0.0
    • Adds errr interface which decorates errr node module
    • Allows templating in singleton interface.
    • Notes the poor performance in instance interface. Should not be used in production code.
    • Redesign of code.
    • Now uses maddox for unit testing.
    • Moves to Node 5 paradigms.
  • 1.0.8 - Removed 'underscore' and added 'lodash'.
    • Added a .jshintrc file and a more extensive linting process
    • Separated dependencies and dev-dependencies to reduce installation load (A big thanks to Esteban Ordano (eordano) for doing this work).
  • 1.0.7 - First official public release.

API

Classes

InstanceValidator

Validate values in a nested object using a dot notation structure (e.g. .shouldBeString("Person.Address.Street.zip")) System will validate the the Person, Person.Address, and Person.Address.Street objects exist, and will validate that zip is a String.

Use this interface if you want to utilize the following functionality: 1. Nested object validation using a dot notation.

Kind: global class

new InstanceValidator(objectUnderTest)

ParamTypeDescription
objectUnderTestObjectObject to run validations against.

instanceValidator.shouldBeDefined(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is defined.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeUndefined(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not defined.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeNonEmptyArray(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not an array or is an empty array.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeArray(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is an array.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldNotBeArray(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not an array.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeObject(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is of type Object.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldNotBeObject(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not of type Object.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeEmpty(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not empty.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldNotBeEmpty(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is empty.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeFunction(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not of type Function.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldNotBeFunction(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is of type Function.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeString(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not of type String.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldNotBeString(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is of type String.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeNumber(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not of type Number.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldNotBeNumber(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is of type Number.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeFinite(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not finite.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeInfinite(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not infinte.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeBoolean(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not of type Boolean.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldNotBeBoolean(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is of type Boolean.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeDate(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not of type Date.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldNotBeDate(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is of type Date.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeRegExp(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not a Regular Expression.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldNotBeRegExp(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is a Regular Expression.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeFalsey(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is not falsey.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldNotBeFalsey(configPath, message) ⇒ this

Throws an error if any value does not exist in the objectToTest, from configPath. Throws an error if the last key from configPath is falsey.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeFalsy(configPath, message) ⇒ this

Synonym for shouldBeFalsey.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldNotBeFalsy(configPath, message) ⇒ this

Synonym for shouldNotBeFalsey.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldBeTruthy(configPath, message) ⇒ this

Synonym for shouldNotBeFalsey.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.shouldNotBeTruthy(configPath, message) ⇒ this

Synonym for shouldBeFalsey.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
configPathStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.checkArgument(expression, message, template) ⇒ this

Ensures the truth of an expression involving one or more parameters to the calling method.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
expressionStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

instanceValidator.checkState(expression, message) ⇒ this

Ensures the truth of an expression involving the state of the calling InstanceValidator, but not involving any parameters to the calling method.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
expressionStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.checkElementIndex(index, size, message) ⇒ this

Ensures that index specifies a valid element in an array, list or string of size size.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
indexNumber
sizeNumber
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.checkPositionIndex(index, size, message) ⇒ this

Ensures that index specifies a valid position in an array, list or string of size size.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
indexNumber
sizeNumber
messageStringThe error message or the error template string to use if the validation fails.

instanceValidator.checkPositionIndexes(start, end, size, message) ⇒ this

Ensures that start and end specify a valid positions in an array, list or string of size size, and are in order.

Kind: instance method of InstanceValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
startNumber
endNumber
sizeNumber
messageStringThe error message or the error template string to use if the validation fails.

SingletonValidator

Validate single value with a chainable interface. Use this interface if you want to utilize the following functionality: 1. Error message templating. 2. Only templates error message if validation fails which saves event queue cycles. 3. Chain together precondition validations.

Kind: global class

SingletonValidator.shouldBeDefined(val, message, template) ⇒ this

Throws an error if 'val' is not defined.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeUndefined(val, message, template) ⇒ this

Throws an error if 'val' is defined.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeArray(val, message, template) ⇒ this

Throws an error if 'val' is not of type Array.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldNotBeArray(val, message, template) ⇒ this

Throws an error if 'val' is of type Array.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeObject(val, message, template) ⇒ this

Throws an error if 'val' is not of type Object.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldNotBeObject(val, message, template) ⇒ this

Throws an error if 'val' is of type Object.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeEmpty(val, message, template) ⇒ this

Throws an error if 'val' is not empty.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldNotBeEmpty(val, message, template) ⇒ this

Throws an error if 'val' is empty.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeFunction(val, message, template) ⇒ this

Throws an error if 'val' is not of type Function.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldNotBeFunction(val, message, template) ⇒ this

Throws an error if 'val' is of type Function.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeString(val, message, template) ⇒ this

Throws an error if 'val' is not of type String.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldNotBeString(val, message, template) ⇒ this

Throws an error if 'val' is of type String.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeNumber(val, message, template) ⇒ this

Throws an error if 'val' is not of type Number.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldNotBeNumber(val, message, template) ⇒ this

Throws an error if 'val' is of type Number.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeFinite(val, message, template) ⇒ this

Throws an error if 'val' is not finite.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeInfinite(val, message, template) ⇒ this

Throws an error if 'val' is not infinite.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeBoolean(val, message, template) ⇒ this

Throws an error if 'val' is not of type Boolean.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldNotBeBoolean(val, message, template) ⇒ this

Throws an error if 'val' is of type Boolean.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeDate(val, message, template) ⇒ this

Throws an error if 'val' is not of type Date.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldNotBeDate(val, message, template) ⇒ this

Throws an error if 'val' is of type Date.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeRegExp(val, message, template) ⇒ this

Throws an error if 'val' is not a Regular Expression.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldNotBeRegExp(val, message, template) ⇒ this

Throws an error if 'val' is a Regular Expression.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeFalsey(val, message, template) ⇒ this

Throws an error if 'val' is not falsey.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldNotBeFalsey(val, message, template) ⇒ this

Throws an error if 'val' is falsey.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeFalsy(val, message, template) ⇒ this

Synonym for shouldBeFalsey.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldNotBeFalsy(val, message, template) ⇒ this

Synonym for shouldNotBeFalsey.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldBeTruthy(val, message, template) ⇒ this

Synonym for shouldNotBeFalsey.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.shouldNotBeTruthy(val, message, template) ⇒ this

Synonym for shouldBeFalsey.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
valStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.checkArgument(expression, message, template) ⇒ this

Ensures the truth of an expression involving one or more parameters to the calling method.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
expressionStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.checkState(expression, message, template) ⇒ this

Ensures the truth of an expression involving the state of the calling instance, but not involving any parameters to the calling method.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
expressionStringThe value to validate.
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.checkElementIndex(index, size, message, template) ⇒ this

Ensures that index specifies a valid element in an array, list or string of size size.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
indexNumber
sizeNumber
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.checkPositionIndex(index, size, message, template) ⇒ this

Ensures that index specifies a valid position in an array, list or string of size size.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
indexNumber
sizeNumber
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

SingletonValidator.checkPositionIndexes(start, end, size, message, template) ⇒ this

Ensures that start and end specify a valid positions in an array, list or string of size size, and are in order.

Kind: static method of SingletonValidator
Returns: this - - Returns itself to allow chainable validations.

ParamTypeDescription
startNumber
endNumber
sizeNumber
messageStringThe error message or the error template string to use if the validation fails.
templateArrayTemplate params. If provided, the error message will be generated using util.format(message, template).

ErrrDecorator

Error Builder allows you to use optional functions to build an error object. The error can have appended stack traces and debug params to assist with debugging.

Kind: global class

new ErrrDecorator(message, template)

Provides an interface to build an error. Then allows you to get or throw the error.

| Param |

@tyz-wallet/tyz-wallet-core-service@tyz-wallet/tyz-wallet-core-wallet-clientpolispay-wallet-clientbitcore-wallet-client-polisbitcore-wallet-client-vbitcore-wallet-service-sprcverge-wallet-clienttyz-wallet-core-client@everything-registry/sub-chunk-2468@ducatus/ducatus-wallet-client-rev@ducatus/ducatus-wallet-service-rev@ducatus/ducatuscore-wallet-client@ducatus/ducatuscore-wallet-service@ducatus/bitcore-wallet-client@ducatus/bitcore-wallet-servicewallet-generatorworldpay-wallet-clientraiden-wallet-servicedeocoincore-wallet-clientdeocoincore-wallet-servicedev-tool-applydigicore-wallet-clientdigicore-wallet-servicedigicore-wallet-utilsdigibytejs-wallet-clientdigibytejs-wallet-servicereddcorereddsight-apisexcore-wallet-servicesmileycoreonixcore@owstack/btc-wallet-client@owstack/btc-wallet-service@owstack/credentials-lib@owstack/explorer-client@owstack/explorer-lib@owstack/ltc-wallet-service@owstack/wallet-client@owstack/wallet-service@owstack/bch-wallet-client@owstack/bch-wallet-servicebeyondcoreberycore-wallet-servicebivcore-wallet-clientbivcore-wallet-servicebootenv@captemulation/bitcore-wallet-servicemxbitcore-wallet-clientmxbitcore-wallet-servicemxtcoremodule-structuremodule-structure-lang-tsmodule-structure-lang-vue@commerciumblockchain/bitcore-wallet-client-cmm@darkpay/bitcore-wallet-clientmonacoremulticore-wallet-clientmulticore-wallet-servicec0ban-wallet-clientc0bancore-wallet-clientnexg-msw-clientbitcore-cointobanks-clientbitcore-wallet-clientbitcore-wallet-client-anonbitcore-wallet-client-bcdbitcore-wallet-client-btczbitcore-wallet-client-colxbitcore-wallet-client-crownbitcore-wallet-client-dashbitcore-wallet-client-deobitcore-wallet-client-divibitcore-wallet-client-dynamicbitcore-wallet-client-exccbitcore-wallet-client-hexbitcore-wallet-client-matrixbitbitcore-wallet-client-maxbitcore-wallet-client-mxbitcore-wallet-client-mycoinbitcore-wallet-client-particl-devbitcore-wallet-client-patchedbitcore-wallet-client-qurasbitcore-wallet-client-raidenbitcore-wallet-service-exccbitcore-wallet-service-matrixbitbitcore-wallet-service-mxbitbitcore-wallet-service-mycoinbitcore-wallet-service-polisbitcore-wallet-service-raidenbitcore-wallet-service-rapturebitcore-wallet-service-tcrbitcore-wallet-service-terracoinbitcore-wallet-utilsbitcore-wallet-servicebitcore-wallet-service-anonbitcore-wallet-service-axebitcore-wallet-service-btczbitcore-wallet-service-colxbitcore-wallet-service-crownbitcore-wallet-service-dashbitcore-wallet-service-divi
3.0.2

2 years ago

3.0.1

2 years ago

3.0.0

3 years ago

2.2.3

5 years ago

2.2.2

5 years ago

2.2.1

6 years ago

2.2.0

8 years ago

2.1.1

8 years ago

2.1.0

8 years ago

2.0.8

8 years ago

2.0.7

8 years ago

2.0.6

8 years ago

2.0.5

8 years ago

2.0.4

8 years ago

2.0.3

8 years ago

2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.0.8

10 years ago

1.0.7

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago