Text Censoring using NodeJS.

Text censorship module is an advanced linguistic tool designed to automatically identify and censor inappropriate or offensive content 
within text. This contain various functions that helps develpoer in censoring the text.

1) **Censored Words** - It contains a list of words which are to be censored.

2) **CustomCensoredWords** - A list is provided for adding custom word or phrase, if required by developer.

3) **censor(text)** - This functiontakes in a 'text' parameter. It loops through each word in the 'censoredWords' array and replace the 
occurances of those words in the 'text' with asterisks ('****'). it then does the same for the words in the 'customCensoredWords' array.
Finally it returns the censored 'text'.

4) **addCensoredWords** - This function takes in a 'word' parameter.It adds the 'word' to the 'customCensoredWords' array 
using the 'push' method.

5) **getCensoredWords** - This function that returns the combination of the 'censoredWords' and 'customCensoredWords' arrays using the 
'concat' method.

6) **exports** - These lines export the 'censor', 'addCensoredWords', 'getCensoredWords' functions to make them accessible outside the module.

In summary, the code defines a module thst provides functionality for censoring words in a given text. It allowws for default words to
be added for censorship. The module provides methods to censor text, add custom censored words, and retrive the list of censored words.