1.2.4 • Published 4 years ago

is-isogram v1.2.4

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

is-isogram

Latest Version Build Status

Test whether a word or phrase is an isogram (a word or phrase without a repeating letter).

Installation

$ npm install is-isogram --save

Usage

var isIsogram = require('is-isogram');

// Test whether letters repeat in a word:

isIsogram('sandwich');
// -> true

isIsogram('wedding');
// -> false


// Also supports phrases, ignoring spacing:

isIsogram('quick on the draw');
// -> true

isIsogram('flipped turned upside down');
// -> false
1.2.4

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

1.2.1

6 years ago

1.1.0

7 years ago

1.0.0

7 years ago