0.2.2 • Published 1 year ago
@stdlib/assert-is-kebabcase v0.2.2
isKebabcase
Test if a value is a string in kebab case.
Installation
npm install @stdlib/assert-is-kebabcaseUsage
var isKebabcase = require( '@stdlib/assert-is-kebabcase' );isKebabcase( value )
Tests if a value is a string in kebab case.
var bool = isKebabcase( 'beep-boop' );
// returns true
bool = isKebabcase( 'BEEP_BOOP' );
// returns falseNotes
- The function validates that a
valueis astring. For all other types, the function returnsfalse.
Examples
var isKebabcase = require( '@stdlib/assert-is-kebabcase' );
var bool = isKebabcase( 'beep-boop' );
// returns true
bool = isKebabcase( 'BEEP_BOOP' );
// returns false
bool = isKebabcase( 'fooBar' );
// returns false
bool = isKebabcase( 'foo_bar' );
// returns false
bool = isKebabcase( 'BeepBoop' );
// returns false
bool = isKebabcase( null );
// returns falseSee Also
@stdlib/assert-is-kebabcase-cli: CLI package for use as a command-line utility.
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.