Je kunt niet meer dan 25 onderwerpen selecteren Onderwerpen moeten beginnen met een letter of nummer, kunnen streepjes bevatten ('-') en kunnen maximaal 35 tekens lang zijn.
 
Sven Slootweg eaab22314e 1.0.0 4 jaren geleden
.gitignore Initial commit 4 jaren geleden
README.md Add documentation 4 jaren geleden
example.js Add missing @validatem/core devDependency 4 jaren geleden
index.js Add error code 4 jaren geleden
package.json 1.0.0 4 jaren geleden
yarn.lock Add missing @validatem/core devDependency 4 jaren geleden

README.md

@validatem/is-string

This validator is designed to be used with Validatem, the universal and composable validation library.

Validates that a given input is a string.

Note that it does not validate that the string is non-empty (ie. has a length above 0); for that, you should use @validatem/is-non-empty-string instead.

License, donations, and other boilerplate

Licensed under either the WTFPL or CC0, at your choice. In practice, that means it's more or less public domain, and you can do whatever you want with it. Giving credit is not required, but still very much appreciated! I'd love to hear from you if this module was useful to you.

Creating and maintaining open-source modules is a lot of work. A donation is also not required, but much appreciated! You can donate here.

Example

A runnable version of this example is included in the repository, as example.js.

"use strict";

const { validateValue } = require("@validatem/core");
const isString = require("@validatem/is-string");

console.log(validateValue("hello world", [ isString ])); // hello world

console.log(validateValue(42, [ isString ])); /*
	AggregrateValidationError: One or more validation errors occurred:
	- At (root): Must be a string
*/

API

If you are new to Validatem, please read the documentation on the Validatem website first - it will explain how the general API works, and how you should use validator modules with it.

isString

Not callable. Validates that the input is a string. When validation passes, it returns the original string as-is.

Possible error codes:

  • validatem.is-string: The input was not a string.

Changelog

1.0.0 (August 8, 2020)

Initial release.