JSPM

is-forwardslash

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q33695F
  • License MIT

Checks given value is forwardslash - support char code number, hex, unicode or string value to be given.

Package Exports

  • is-forwardslash

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-forwardslash) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

is-forwardslash npmjs.com The MIT License

Checks given value is forwardslash - support char code number, hex, unicode or string value to be given.

code climate standard code style travis build status coverage status dependency status

Install

npm i is-forwardslash --save

Usage

For more use-cases see the tests

const isForwardslash = require('is-forwardslash')

isForwardslash

Check value is strictly forwardslash or forwardslash-like.

  • [val] {String|Number} value to check
  • [opts] {Object} only opts.strict option, default false
  • returns {Boolean}

Example

const isForwardslash = require('is-forwardslash')

// returns true (default mode, opts.strict !== true)
console.log(isForwardslash(47, {strict: 123})) // => true
console.log(isForwardslash(47))                // => true
console.log(isForwardslash('47'))              // => true
console.log(isForwardslash('/'))              // => true
console.log(isForwardslash('\u002F'))          // => true
console.log(isForwardslash('\u002f'))          // => true
console.log(isForwardslash('\x2f'))            // => true
console.log(isForwardslash('/'))           // => true

// strict mode - need explicitly define `opts.strict: true`
console.log(isForwardslash(47, {strict: true}))        // => false
console.log(isForwardslash('47', {strict: true}))      // => false
console.log(isForwardslash('/', {strict: true}))      // => true
console.log(isForwardslash('\u002F', {strict: true}))  // => true
console.log(isForwardslash('\u002f', {strict: true}))  // => true
console.log(isForwardslash('\x2f', {strict: true}))    // => true

console.log(isForwardslash('/', {strict: 123}))    // => true
console.log(isForwardslash('/', {strict: true}))   // => false
console.log(isForwardslash(['foo', 'bar']))            // => false
console.log(isForwardslash({a: 'b'}))                  // => false
console.log(isForwardslash())                          // => false
  • is-async-function: Check that given function is async (callback) function or not. Trying to guess that based on check if callback, cb, done or next exists as function argument name.
  • is-backslash: Checks given value is backslash - support char code number, hex, unicode or string value to be given.
  • is-child-process: Checks whether a value is child process result, which in case is more specific Node.js EventEmitter.
  • is-emitter: Check that given value is EventEmitter, not so strict as is-node-emitter.
  • is-empty-function: Check that given string, function or arrow function have empty body, using parse-function.
  • is-hexcolor: Check that given value is valid hex color, using hex-color-regex - the best regex for matching hex color values
  • is-installed: Checks that given package is installed on the system - globally or locally.
  • is-kindof: Check type of given javascript value. Support promises, generators, streams, and native types.
  • is-missing: Check that given name or user/repo exists in npm registry or in github as user repository.
  • is-node-emitter: Strictly checks that given value is nodejs EventEmitter. It's easy, because his API is in frozen state.
  • is-node-stream: Strictly and correctly checks if value is a nodejs stream.
  • is-real-object: Returns true if a value is any type of object, but not an array. Browserify-ready.
  • is-request-stream: Check that given value is request stream
  • is-singular: Return true if given word is in singular form like apple, car, test and false otherwise, never throws.
  • is-sync-function: Opposite of is-async-function. Check that given function is synchronous.
  • is-typeof-error: Check that given value is any type of error and instanceof Error

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
But before doing anything, please read the CONTRIBUTING.md guidelines.

Charlike Make Reagent new message to charlike freenode #charlike

tunnckocore.tk keybase tunnckocore tunnckoCore npm tunnckoCore twitter tunnckoCore github