@brazilian-utils/helper-is-last-char

Check if the index is the same as last index of the string.

Usage no npm install needed!

<script type="module">
  import brazilianUtilsHelperIsLastChar from 'https://cdn.skypack.dev/@brazilian-utils/helper-is-last-char';
</script>

README

@brazilian-utils/helper-is-last-char

Check if the index is the same as last index of the string.

Installation

# Yarn
yarn add @brazilian-utils/helper-is-last-char

# npm
npm install @brazilian-utils/helper-is-last-char --save

# UMD
<script type='text/javascript' src='https://unpkg.com/@brazilian-utils/helper-is-last-char/dist/index.umd.js'></script>

Usage

import isLastChar from '@brazilian-utils/helper-is-last-char';

isLastChar(2, '123'); // true
isLastChar(1, '123'); // false
isLastChar(3, '123'); // false