Test if a character at an index in a string is upper case.
npm install @kingjs/string-ex.is-upper-case-atjs
var assert = require('assert');
var IsUpperCaseAt = require('@kingjs/string-ex.is-upper-case-at');
assert('Foo'IsUpperCaseAt == true);
assert('Foo'IsUpperCaseAt == false);
`
API
`ts
isUpperCaseAt(this, index)
`
$3
- this: The string.
- index: The zero based index at which to test casing.
$3
Returns true if the character at index is upper case.
Install
With npm installed, run
`
$ npm install @kingjs/string-ex.is-upper-case-at
``