is-alphanumeric

WebJar for is-alphanumeric

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

is-alphanumeric
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

is-alphanumeric
WebJar for is-alphanumeric
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/arthurvr/is-alphanumeric

Download is-alphanumeric

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/is-alphanumeric/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>is-alphanumeric</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/is-alphanumeric/
implementation 'org.webjars.npm:is-alphanumeric:1.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/is-alphanumeric/
implementation ("org.webjars.npm:is-alphanumeric:1.0.0")
'org.webjars.npm:is-alphanumeric:jar:1.0.0'
<dependency org="org.webjars.npm" name="is-alphanumeric" rev="1.0.0">
  <artifact name="is-alphanumeric" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='is-alphanumeric', version='1.0.0')
)
libraryDependencies += "org.webjars.npm" % "is-alphanumeric" % "1.0.0"
[org.webjars.npm/is-alphanumeric "1.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

is-alphanumeric Build Status

Check if a string only contains alphanumeric characters

Install

$ npm install --save is-alphanumeric

Usage

const isAlphanumeric = require('is-alphanumeric');

isAlphanumeric('unicorns');
//=> true

isAlphanumeric('55');
//=> true

isAlphanumeric('ABC');
//=> true

isAlphanumeric('*unicorns');
//=> false

isAlphanumeric('{unicorns}');
//=> false

isAlphanumeric(' ');
//=> false

License

MIT © Arthur Verschaeve

Versions

Version
1.0.0