clean-sentence

0.1.8 • Public • Published

Usage

Running

// example.js
var cleanSentence = require('clean-sentence');

console.log(
    cleanSentence(
        '   clean this sentence by triming white spaces, capitalize first letter, adding a trailing dot, removing white space  doublets, removing URLs https://example.org and removing smileys :smile: ',
        {
            do_not_add_trailing_dot: false,
            do_not_uppercase_first_letter: false,
            do_not_remove_unexpected_leading_chars: false,
            do_not_remove_trailing_spaces: false,
            do_not_remove_space_duplicates: false,
            remove_emojis: true,
            remove_urls: true
        }
    )
);

will print

Clean this sentence by triming white spaces, capitalize first letter, adding a trailing dot, removing white space doublets, removing URLs and/or removing smileys.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i clean-sentence

    Weekly Downloads

    16

    Version

    0.1.8

    License

    none

    Last publish

    Collaborators

    • brillout