check if a string is within a range
npm install string-rangeCheck whether a string is within a range.
`` js
var ranges = require('string-range')
ranges.satisfies('hello', {start: 'a', end: 'z'})
=> true
ranges.satisfies('Hello', {start: 'a', end: 'z'})
=> false
//force a range inside a prefix!
ranges.satisfies('TYPE~key', ranges.prefix({start:'a', end:'z'}, 'TYPE')
=> true
``
MIT