biobulkbende.org/node_modules/ext/node_modules/type
Tancre 0efda7fffe structure, layout and automation 2020-09-16 14:23:28 +02:00
..
array structure, layout and automation 2020-09-16 14:23:28 +02:00
array-length structure, layout and automation 2020-09-16 14:23:28 +02:00
array-like structure, layout and automation 2020-09-16 14:23:28 +02:00
date structure, layout and automation 2020-09-16 14:23:28 +02:00
docs structure, layout and automation 2020-09-16 14:23:28 +02:00
error structure, layout and automation 2020-09-16 14:23:28 +02:00
finite structure, layout and automation 2020-09-16 14:23:28 +02:00
function structure, layout and automation 2020-09-16 14:23:28 +02:00
integer structure, layout and automation 2020-09-16 14:23:28 +02:00
iterable structure, layout and automation 2020-09-16 14:23:28 +02:00
lib structure, layout and automation 2020-09-16 14:23:28 +02:00
natural-number structure, layout and automation 2020-09-16 14:23:28 +02:00
number structure, layout and automation 2020-09-16 14:23:28 +02:00
object structure, layout and automation 2020-09-16 14:23:28 +02:00
plain-function structure, layout and automation 2020-09-16 14:23:28 +02:00
plain-object structure, layout and automation 2020-09-16 14:23:28 +02:00
promise structure, layout and automation 2020-09-16 14:23:28 +02:00
prototype structure, layout and automation 2020-09-16 14:23:28 +02:00
reg-exp structure, layout and automation 2020-09-16 14:23:28 +02:00
safe-integer structure, layout and automation 2020-09-16 14:23:28 +02:00
string structure, layout and automation 2020-09-16 14:23:28 +02:00
test structure, layout and automation 2020-09-16 14:23:28 +02:00
thenable structure, layout and automation 2020-09-16 14:23:28 +02:00
time-value structure, layout and automation 2020-09-16 14:23:28 +02:00
value structure, layout and automation 2020-09-16 14:23:28 +02:00
.editorconfig structure, layout and automation 2020-09-16 14:23:28 +02:00
CHANGELOG.md structure, layout and automation 2020-09-16 14:23:28 +02:00
LICENSE structure, layout and automation 2020-09-16 14:23:28 +02:00
README.md structure, layout and automation 2020-09-16 14:23:28 +02:00
ensure.js structure, layout and automation 2020-09-16 14:23:28 +02:00
package.json structure, layout and automation 2020-09-16 14:23:28 +02:00

README.md

*nix build status Windows build status Tests coverage npm version

type

Runtime validation and processing of JavaScript types

  • Respects language nature and acknowledges its quirks
  • Allows coercion in restricted forms (rejects clearly invalid input, normalizes permissible type deviations)
  • No transpilation implied, written to work in all ECMAScript 3+ engines

Use case

Validate arguments input in public API endpoints.

For validation of more sophisticated input structures (as deeply nested configuration objects) it's recommended to consider more powerful schema based utlities (as AJV or @hapi/joi)

Example usage

Bulletproof input arguments normalization and validation:

const ensureString        = require('type/string/ensure')
    , ensureDate          = require('type/date/ensure')
    , ensureNaturalNumber = require('type/natural-number/ensure')
    , isObject            = require('type/object/is');

module.exports = (path, options = { min: 0 }) {
  path = ensureString(path, { errorMessage: "%v is not a path" });
  if (!isObject(options)) options = {};
  const min = ensureNaturalNumber(options.min, { default: 0 })
      , max = ensureNaturalNumber(options.max, { isOptional: true })
      , startTime = ensureDate(options.startTime, { isOptional: true });

  // ...logic
};

Installation

npm install type

Utilities

Aside of general ensure validation util, following kind of utilities for recognized JavaScript types are provided:

*/coerce

Restricted coercion into primitive type. Returns coerced value or null if value is not coercible per rules.

*/is

Object type/kind confirmation, returns either true or false.

*/ensure

Value validation. Returns input value (in primitive cases possibly coerced) or if value doesn't meet the constraints throws TypeError .

Each */ensure utility, accepts following options (eventually passed with second argument):

  • isOptional - Makes null or undefined accepted as valid value. In such case instead of TypeError being thrown, null is returned.
  • default - A value to be returned if null or undefined is passed as an input value.
  • errorMessage - Custom error message. Following placeholders can be used:
    • %v - To be replaced with short string representation of invalid value
    • %n - To be replaced with meaninfgul name (to be passed with name option) of validated value. Not effective if name option is not present
  • name - Meaningful name for validated value, to be used in error message, assuming it contains %n placeholder

Index

General utils:

Type specific utils:

Tests

$ npm test