- 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
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)
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
};npm install typeAside of general ensure validation util, following kind of utilities for recognized JavaScript types are provided:
Restricted coercion into primitive type. Returns coerced value or null if value is not coercible per rules.
Object type/kind confirmation, returns either true or false.
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- Makesnullorundefinedaccepted as valid value. In such case instead ofTypeErrorbeing thrown,nullis returned.default- A value to be returned ifnullorundefinedis 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 withnameoption) of validated value. Not effective ifnameoption is not present
errorCode- Eventual error code to be exposed on.codeerror propertyname- Meaningful name for validated value, to be used in error message, assuming it contains%nplaceholderError- Alternative error constructor to be used (defaults toTypeError)
- Value
- Object
object/isobject/ensure- Plain Object
- String
- Number
number/coercenumber/ensure- Finite Number
- Integer Number
- Safe Integer Number
- Natural Number
- Array Length
- Time Value
- BigInt
- Array Like
- Iterable
- Set
- Map
- Date
- Function
function/isfunction/ensure- Constructor
- Plain Function
- Reg Exp
- Thenable
- Error
- Prototype
$ npm test
To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure.