|
3 months ago | |
---|---|---|
.. | ||
array | 3 months ago | |
array-length | 3 months ago | |
array-like | 3 months ago | |
big-int | 3 months ago | |
constructor | 3 months ago | |
date | 3 months ago | |
docs | 3 months ago | |
error | 3 months ago | |
finite | 3 months ago | |
function | 3 months ago | |
integer | 3 months ago | |
iterable | 3 months ago | |
lib | 3 months ago | |
map | 3 months ago | |
natural-number | 3 months ago | |
number | 3 months ago | |
object | 3 months ago | |
plain-function | 3 months ago | |
plain-object | 3 months ago | |
promise | 3 months ago | |
prototype | 3 months ago | |
reg-exp | 3 months ago | |
safe-integer | 3 months ago | |
set | 3 months ago | |
string | 3 months ago | |
thenable | 3 months ago | |
time-value | 3 months ago | |
ts-types | 3 months ago | |
value | 3 months ago | |
CHANGELOG.md | 3 months ago | |
LICENSE | 3 months ago | |
README.md | 3 months ago | |
ensure.js | 3 months ago | |
package.json | 3 months ago |
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 type
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 presenterrorCode
- Eventual error code to be exposed on .code
error propertyname
- Meaningful name for validated value, to be used in error message, assuming it contains %n
placeholderError
- Alternative error constructor to be used (defaults to TypeError
)object/is
object/ensure
plain-object/is
plain-object/ensure
number/coerce
number/ensure
finite/coerce
finite/ensure
integer/coerce
integer/ensure
safe-integer/coerce
safe-integer/ensure
natural-number/coerce
natural-number/ensure
array-length/coerce
array-length/ensure
time-value/coerce
time-value/ensure
function/is
function/ensure
constructor/is
constructor/ensure
plain-function/is
plain-function/ensure
$ npm test
To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure.