Skip to content

Latest commit

 

History

History
 
 

helper-is-last-char

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

@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