You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
Sven Slootweg 295a633ecd Add missing attribution header 4 months ago
.gitignore Initial commit 5 years ago
README.md Faster check, error codes, documentation 4 months ago
example.js Add missing @validatem/core devDependency 5 years ago
index.js Faster check, error codes, documentation 4 months ago
is-number-object.js Add missing attribution header 4 months ago
package.json 1.0.0 4 months ago
pnpm-lock.yaml Faster check, error codes, documentation 4 months ago

README.md

@validatem/is-number

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

Validates that a given input is a number.

Note that this only accepts actual numbers, not numeric strings; if you are trying to validate a numeric string, you should use @validatem/is-numeric 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 isNumber = require("@validatem/is-number");

console.log(validateValue(42, [ isNumber ])); // 42

console.log(validateValue("hello world", [ isNumber ])); /*
	AggregrateValidationError: One or more validation errors occurred:
	 - At (root): Must be a number
*/

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.

isNumber

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

Possible error codes:

  • validatem.is-number.number: The input was not a number.
  • validatem.is-number.nan: The input was NaN.

Changelog

1.0.0 (July 14, 2024)

Initial release.