1.1.2 • Published 4 years ago
iskenny v1.1.2
isKenny
Returns true if the given input string is kenny.
Install
Install with npm:
$ npm install --save iskenny
Usage
Works only with strings. not case sensitive.
const isKenny = require('iskenny');
console.log(isKenny('Kenny')); //=> true
console.log(isKenny('kenny')); //=> true
console.log(isKenny(0)); //=> false
console.log(isKenny('Andy')); //=> false