get-string-middle-index-without-cutting-words

1.0.2 • Public • Published

get-string-middle-index-without-cutting-words

Install

$ npm install get-string-middle-index-without-cutting-words

Usage

import getMiddleIndex from "get-string-middle-index-without-cutting-words";

getMiddleIndex("123 56");
// => 3
getMiddleIndex("12 456");
// => 2
getMiddleIndex("1 3");
// => 1
getMiddleIndex("12 45 7");
// => 2
getMiddleIndex("123 5 7");
// => 3
getMiddleIndex("12 4 67");
// => 2
getMiddleIndex("123");
// => cant cut, so returns -1
getMiddleIndex("");
// => -1
getMiddleIndex(null);
// throws if argument is not a string

/get-string-middle-index-without-cutting-words/

    Package Sidebar

    Install

    npm i get-string-middle-index-without-cutting-words

    Weekly Downloads

    1

    Version

    1.0.2

    License

    MIT

    Unpacked Size

    5.34 kB

    Total Files

    10

    Last publish

    Collaborators

    • marconicolodi