🤖 lowline.ai
Lowline.ai is a javascript utility library that makes it easy to sprinkle powerful AI magic throughout your code.
- 100+ (eventually) functions powered by ChatGPT, each being constantly improved with more added all the time.
- Use straight away by installing the NPM module.
- For faster completions sign up for a pay-per-use plan and create an API key.
This tool is under development. Any feedback, bug reports, issues, or suggestions would be hugely appreciated and will help towards improving this tool
📖 Table of Contents
- Getting started
- Pricing
- Search and recommend
- Text processing
- Emojis
- Simple logic (coming soon)
- Messaging
- Sentiment & formality (coming soon)
- Geography (coming soon)
- Numbers (coming soon)
- Colors (coming soon)
- Addresses and contact info (coming soon)
- Data formats (coming soon)
- HTML (coming soon)
- Markdown (coming soon)
🚀 Getting started
Install the NPM package
npm install lowline.ai
Once the package is installed you can import using the require or import approach.
// import
import _ai from "lowline.ai";
// or require
const _ai = require("lowline.ai");
If using an API Key for faster completions:
import _ai from "lowline.ai";
_ai.init({
apiKey: "REPLACE_THIS_WITH_YOUR_API_KEY",
});
// ... continue as normal
Search example
import _ai from "lowline.ai";
const list = ["test1", "test2", "test3", "test4", "test5"];
// inside async function
const res = await _ai.searchStringList({
count: 1,
search_term: "second test",
search_items: list,
});
if (res.error) {
console.log(error);
} else {
console.log(res.result); // --> ["test2"]
}
// callback method
_ai..searchStringList({
count: 1,
search_term: "second test",
search_items: list,
}).then((res) => {
if (res.error) {
console.log(error);
} else {
console.log(res.result); // --> ["test2"]
}
});
Recommendation example
import _ai from "lowline.ai";
const purchases = ["apple", "banana"];
const products = [
"apple",
"banana",
"orange",
"grape",
"eggs",
"chicken",
"potato",
"pasta",
];
const res = await _ai.recommendStringList({
options: products,
interests: purchases,
count: 3,
});
if (res.error) {
console.lg(res.error);
} else {
console.log(res.result); // --> ["orange", "grape", "pasta"]
}
🏷️ Pricing
lowline.ai is FREE to use with a small response delay,
For full speed completions, sign up for a paid account and create an API Key.
- Unlimited free use with a slightly delayed response.
- This delay is currently 5 seconds
- To remove this delay, create a paid plan at USD $0.001 per request.
- Pricing and delay length may change if needed to make the project financially sustainable.
🔍 Search and recommend
- searchStringList
- recommendStringList
- createStringList
- sortStringList
- filterStringList
- searchOptionList
- recommendOptionList
- createOptionList
- sortOptionList
- filterOptionList
string_list type
string[];
searchStringList
Search through a list of strings, based on a search term provided.
const res = await _ai.searchStringList({
count: 1,
search_term: "The second test",
items: ["test1", "test2", "test3", "test4", "test5"],
});
if (res.error) {
console.log(res.error);
} else {
console.lg(res.result); // -> ["test2"]
}
recommendStringList
Recommend from a list of strings, based on interests provided.
const res = await _ai.recommendStringList({
count: 2,
interests: ["Clothes shopping", "History"],
items: [
"The beach",
"The local mall",
"A forest reserve",
"The sports club",
"The local heritage museum",
],
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result); // --> ["The local mall", "The local heritage museum"]
}
createStringList
Create a list of strings, based on an item type and count.
const res = await _ai.createStringList({
count: 4,
item_type: "largest countries by landmass in descending order",
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result); // --> ["Russia", "Canada", "China", "United States"],
}
sortStringList
Sort a list of strings, based on a criteria.
const res = await _ai.sortStringList({
criteria: "Hardness",
items: ["Granite", "Polystyrene foam", "Wood", "Diamond"],
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result); // -> ["Diamond", "Granite", "Wood", "Polystyrene foam"]
}
filterStringList
Filter a list of strings, based on a criteria.
const res = await _ai.filterStringList({
criteria: "Type of rock",
items: ["Granite", "Polystyrene foam", "Wood", "Iron ore", "Potato"],
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result); // --> ["Granite", "Iron ore"],
}
option_list type
{ id: string; text: string; }[];
searchOptionList
Search in a list of options, based on a search term.
const search_term = "Best place to go for a nature walk and hear the ocean";
const options = [
{ id: "967ea024-b996-11ed-afa1-0242ac120002", text: "The beach" },
{
id: "a9c50ee8-b996-11ed-afa1-0242ac120002",
text: "The local mall",
},
{
id: "c4b2d762-b996-11ed-afa1-0242ac120002",
text: "A botanical garden",
},
{
id: "d5956108-b996-11ed-afa1-0242ac120002",
text: "On a treadmill at the gym",
},
{
id: "f129c558-b996-11ed-afa1-0242ac120002",
text: "Down the main street of your town",
},
];
const res = await _ai.searchOptionList({
count: 1,
search_term,
options,
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result);
// {
// id: "967ea024-b996-11ed-afa1-0242ac120002",
// text: "The beach"
// },
}
recommendOptionList
Recommend one or more options from a list of options, based on a list of interests.
const res = await _ai.recommendOptionList({
count: 2,
interests: [
{
id: "53932a26-b9a2-11ed-afa1-0242ac120002",
text: "Clothes shopping",
},
{
id: "69dc9b78-b9a2-11ed-afa1-0242ac120002",
text: "History",
},
],
options: [
{ id: "967ea024-b996-11ed-afa1-0242ac120002", text: "The beach" },
{
id: "a9c50ee8-b996-11ed-afa1-0242ac120002",
text: "The local mall",
},
{
id: "c4b2d762-b996-11ed-afa1-0242ac120002",
text: "A forest reserve",
},
{
id: "d5956108-b996-11ed-afa1-0242ac120002",
text: "The sports club",
},
{
id: "f129c558-b996-11ed-afa1-0242ac120002",
text: "The local heritage museum",
},
],
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result);
// [
// {
// id: "a9c50ee8-b996-11ed-afa1-0242ac120002",
// text: "The local mall",
// },
// {
// id: "f129c558-b996-11ed-afa1-0242ac120002",
// text: "The local heritage museum",
// },
// ],
}
createOptionList
Create a list of options, based on a option type that describes the kind of options to create.
const res = await _ai.createOptionList({
count: 3,
option_type: "largest countries by land area, descending",
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result);
// [
// {
// id: "42b58fce-b9b5-11ed-afa1-0242ac120002",
// text: "Russia",
// },
// {
// id: "4b3dd782-b9b5-11ed-afa1-0242ac120002",
// text: "Canada",
// },
// {
// id: "5310e8aa-b9b5-11ed-afa1-0242ac120002",
// text: "China",
// },
// ],
}
sortOptionList
Sort a list of options, based on a criteria.
const res = await _ai.sortOptionList({
criteria: "Hardness",
options: [
{
id: "8a715e2c-b9a8-11ed-afa1-0242ac120002",
text: "Granite",
},
{
id: "a4b270fa-b9a8-11ed-afa1-0242ac120002",
text: "Polystyrene foam",
},
{
id: "800c6e9a-b9a8-11ed-afa1-0242ac120002",
text: "Diamond",
},
{
id: "9730bc02-b9a8-11ed-afa1-0242ac120002",
text: "Wood",
},
],
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result);
// [
// {
// id: "800c6e9a-b9a8-11ed-afa1-0242ac120002",
// text: "Diamond",
// },
// {
// id: "8a715e2c-b9a8-11ed-afa1-0242ac120002",
// text: "Granite",
// },
// {
// id: "9730bc02-b9a8-11ed-afa1-0242ac120002",
// text: "Wood",
// },
// {
// id: "a4b270fa-b9a8-11ed-afa1-0242ac120002",
// text: "Polystyrene foam",
// },
// ]
}
filterOptionList
Filter a list of options, based on a criteria.
const res = await _ai.filterOptionList({
criteria: "Types of rocks",
options: [
{
id: "8a715e2c-b9a8-11ed-afa1-0242ac120002",
text: "Granite",
},
{
id: "a4b270fa-b9a8-11ed-afa1-0242ac120002",
text: "Polystyrene foam",
},
{
id: "800c6e9a-b9a8-11ed-afa1-0242ac120002",
text: "Sandstone",
},
{
id: "9730bc02-b9a8-11ed-afa1-0242ac120002",
text: "Wood",
},
],
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result);
// [
// {
// id: "8a715e2c-b9a8-11ed-afa1-0242ac120002",
// text: "Granite",
// },
// {
// id: "800c6e9a-b9a8-11ed-afa1-0242ac120002",
// text: "Sandstone",
// },
// ],
}
📘 Text processing
- generatePlaintext
- isPlaintext
- hasSpellingErrors
- fixSpellingErrors
- hasGrammarErrors
- fixGrammarErrors
- hasProfanity
- fixProfanity
- includesMentionOf
- isQuestion
- suggestEdits
- summarize
- summarizeKeyPoints
- elaborate
- explain
- classify
- getKeywords
- generateKeywords
- getTopics
- pluralize
- plaintextToMarkdown
- plaintextToHTML
- toSpellingUSA
- toSpellingUK
generatePlaintext
Just a wrapper around a normal prompt, may remove later.
const res = await _ai.generatePlaintext({
prompt:
"Explain the rules of cricket in a way that a 5 year old can understand.",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// Cricket is a game that is played between two teams, with each team taking turns to bat and bowl.
// The team that scores the most runs wins the game.
}
isPlaintext
Detects if the text is in plain text format.
const res = await _ai.isPlaintext({
text: "The theatre was filled with an enthusiastic audience for the opening night.",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result); // -> true
}
hasSpellingErrors
Detects if the text has spelling errors.
const res = await _ai.hasSpellingErrors({
text: "The stufent went to the libary to researsh for her esssay.",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result); // -> true
}
fixSpellingErrors
Fixes any spelling errors found in the text.
const res = await _ai.fixSpellingErrors({
text: "Wittenburg Cathdral is a bautifull and histroic bulding loceted in the German city of Wittenburg.",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// Wittenburg Cathedral is a beautiful and historic building located in the German city of Wittenburg.
}
hasGrammarErrors
Detects if the text has grammar errors.
const res = await _ai.hasGrammarErrors({
text: "Ernest Shackleton was a famouse explorer who leaded an epic expedition to Antartica in 1914.",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result); // true
}
fixGrammarErrors
Fixes any grammar errors found in the text.
const res = await _ai.fixGrammarErrors({
text: "Ernest Shackleton was a famous explorer who leaded an epic expedition to Antartica in 1914.",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// Ernest Shackleton was a famous explorer who led an epic expedition to Antarctica in 1914.
}
hasProfanity
Detects if the text has profanity.
const res = await _ai.hasProfanity({
text: "Oh shit, I can't believe I just said that.",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result); // true
}
fixProfanity
Obscures any profanity found in the text using asterisks.
const res = await _ai.hasProfanity({
text: "Oh shit, I can't believe I just said that.",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// Oh ****, I can't believe I just said that.
}
includesMentionOf
Detects if the text includes a mention of a subject.
const res = await _ai.includesMentionOf({
text: "The Battle of Cannae was a key engagement of the Second Punic War between the Roman Republic and Carthage, fought on 2 August 216 BC near the ancient village of Cannae in Apulia, southeast Italy.",
subject: "Warfare",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result); // true
}
isQuestion
Detects if the text is a question.
const res = await _ai.isQuestion({
text: "When did Constantinople fall?",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result); // true
}
suggestEdits
Suggests edits to the text.
const res = await _ai.suggestEdits({
text: "Rasputin was a man who lived in Rushia long ago. He was known for being a spiritual advizor to the Tsar and his family.",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// "Rasputin was a man who lived in Russia long ago. He was known for being a spiritual advisor to the Tsar and his family.",
}
summarize
Summarizes the text.
const res = await _ai.summarize({
text: "Satoshi Nakamoto is the pseudonym used by the unknown creator of Bitcoin, a cryptocurrency. Nakamoto's true identity remains a mystery, and it is unclear whether the name refers to an individual or a group of people. Despite the secrecy surrounding Nakamoto's identity, their creation of Bitcoin has revolutionized the world of finance and technology.",
sentence_count: 1,
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// "Satoshi Nakamoto is the pseudonym used by the unknown person or group that created the Bitcoin cryptocurrency."
}
summarizeKeyPoints
Summarizes the text and highlights key points.
const res = await _ai.summarizeKeyPoints({
text: "Satoshi Nakamoto is the pseudonym used by the unknown creator of Bitcoin, a cryptocurrency. Nakamoto's true identity remains a mystery, and it is unclear whether the name refers to an individual or a group of people. Despite the secrecy surrounding Nakamoto's identity, their creation of Bitcoin has revolutionized the world of finance and technology.",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// Satoshi Nakamoto is the pseudonym of the creator of Bitcoin, a cryptocurrency that has revolutionized finance and technology.
// The true identity of Nakamoto remains unknown
}
elaborate
Elaborates on the text.
const res = await _ai.elaborate({
text: "Is mayonnaise an instrument?",
sentence_count: 2,
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// Is mayonnaise an instrument? This is a famous line from the animated television show SpongeBob SquarePants, where one of the characters asks this question to another character who is playing a musical instrument. The line has become a popular meme and is often used humorously to question the validity of something.
}
explain
Explains the text at a given level of understanding.
const res = await _ai.explain({
text: "What is magnetism?",
level: "novice",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// Magnetism is a force that attracts or repels certain materials, such as iron or steel. It is caused by the motion of electric charges, such as electrons. Magnets have two poles, north and south, and opposite poles attract while like poles repel. Magnets can be found in everyday objects such as refrigerator magnets, speakers, and motors.
}
classify
Classifies an item into one of a number of categories based on a criteria.
const res = await _ai.classify({
item: "The Epic of Gilgamesh",
criteria: "language of original text",
categories: [
{
id: "d5d7b896-bbc6-11ed-afa1-0242ac120002",
text: "Modern languages",
},
{
id: "e8b3c1ee-bbc6-11ed-afa1-0242ac120002",
text: "Ancient languages",
},
{
id: "efae8358-bbc6-11ed-afa1-0242ac120002",
text: "Medieval languages",
},
],
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// {
// id: "e8b3c1ee-bbc6-11ed-afa1-0242ac120002",
// text: "Ancient languages",
// },
}
getKeywords
Extracts keywords based on the text provided.
const res = await _ai.getKeywords({
text: "The Epic of Gilgamesh was written in ancient Sumerian by an unknown author.",
count: 3,
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// [ 'Epic of Gilgamesh', 'ancient Sumerian', 'unknown author' ]
}
generateKeywords
Generates keywords based on the topic provided.
const res = await _ai.generateKeywords({
topic: "Charles Dickens",
count: 4,
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// [ 'author', 'Victorian era', 'novels', 'social commentary' ]
}
getTopic
Extracts the topic of the text provided.
const res = await _ai.getTopic({
text: "A developed country, New Zealand ranks highly in international comparisons of national performance, such as quality of life, education, protection of civil liberties, government transparency, and economic freedom. The country was the first to introduce a minimum wage, and the first to give women the right to vote. New Zealand underwent major economic changes during the 1980s, which transformed it from a protectionist to a liberalised free-trade economy.",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result); // New Zealand
}
pluralize
Figure out the correct plural form of a word.
const res = await _ai.pluralize({
item: "tornado",
count: 3,
});
if (res.error) {
console.log(error);
} else {
console.log(res.result); // tornadoes
}
plaintextToMarkdown
Converts plaintext to markdown.
const res = await _ai.plaintextToMarkdown({
text: `General Sherman (tree)
General Sherman is a giant sequoia tree located at an elevation of 2,109 m (6,919 ft) above sea level in the Giant Forest of Sequoia National Park in Tulare County, in the U.S. state of California.
History
The General Sherman Tree was named after the American Civil War general William Tecumseh Sherman.`,
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// `# General Sherman (tree)
// General Sherman is a giant sequoia tree located at an elevation of 2,109 m (6,919 ft) above sea level in the Giant Forest of Sequoia National Park in Tulare County, in the U.S. state of California.
//
// ## History
// The General Sherman Tree was named after the American Civil War general William Tecumseh Sherman.`,
}
plaintextToHTML
Converts plaintext to HTML.
const res = await _ai.plaintextToHTML({
text: `General Sherman (tree)
General Sherman is a giant sequoia tree located at an elevation of 2,109 m (6,919 ft) above sea level in the Giant Forest of Sequoia National Park in Tulare County, in the U.S. state of California.
History
The General Sherman Tree was named after the American Civil War general William Tecumseh Sherman. The official story, which may be apocryphal, claims the tree was named in 1879 by naturalist James Wolverton, who had served as a lieutenant in the 9th Indiana Cavalry under Sherman.`,
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// "<div><h1>General Sherman (tree)</h1><p>General Sherman is a giant sequoia tree located at an elevation of 2,109 m (6,919 ft) above sea level in the Giant Forest of Sequoia National Park in Tulare County, in the U.S. state of California.</p><h2>History</h2><p>The General Sherman Tree was named after the American Civil War general William Tecumseh Sherman. The official story, which may be apocryphal, claims the tree was named in 1879 by naturalist James Wolverton, who had served as a lieutenant in the 9th Indiana Cavalry under Sherman.</p></div>",
}
toSpellingUSA
Converts British English to American English.
const res = await _ai.toSpellingUSA({
text: `The centre of the harbour was crowded with 19th century British sailing ships.`,
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// "The center of the harbor was crowded with 19th century British sailing ships"
}
toSpellingUK
Converts American English to British English.
const res = await _ai.toSpellingUSA({
text: "The center of the harbor was crowded with 19th century British sailing ships",
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// "The centre of the harbour was crowded with 19th century British sailing ships."
}
😘 Emojis
suggestEmoji
Suggests the most appropriate emoji for a given text.
const res = await _ai.suggestEmoji({
text: "Let's go to the beach",
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result); // 🏖️
}
isEmoji
Checks if a given text is an emoji.
const res = await _ai.isEmoji({
text: "Let's go to the beach",
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result); // -> false
}
const res2 = await _ai.isEmoji({
text: "🏖️",
});
if (res2.error) {
console.log(res2.error);
} else {
console.log(res2.result); // -> true
}
hasEmojis
Checks if a given text has emojis.
const res = await _ai.hasEmojis({
text: "A wizard is never late, nor is he early. He arrives precisely when he means to. 🧙♂️",
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result); // -> true
}
removeEmojis
Removes emojis from a given text.
const res = await _ai.removeEmojis({
text: "History became legend 📖. Legend became myth 📜.",
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result); // History became legend. Legend became myth.
}
🤌 Sentiment & formality
- detectMainSentiment
- getSentimentHappiness
- getSentimentAnger
- getSentimentSadness
- getSentimentDisgust
- getSentimentFear
- getSentimentSurprise
- changeSentiment
formality
- detectFormality
- detectFormalityValue
- editFormality
🧰 HTML
- hasHTML
- removeHTML
- convertHTMLToMarkdown
- convertHTMLToPlainText
📠 Markdown
- hasMarkdown
- removeMarkdown
- convertMarkdownToHTML
- convertMarkdownToPlainText
💡 Simple Logic
- yesOrNo
-
💬 Messaging
chat_thread type
{
name: string;
role: string;
content: string;
}[];
suggestChatResponse
const res = await _ai.suggestChatResponse({
intent: "Give a compliment",
chat_thread: [
{
name: "User",
role: "user",
content: "I'm feeling down",
},
{
name: "Bot",
role: "bot",
content: "I'm sorry to hear that",
},
{
name: "User",
role: "user",
content: "Can you give me a compliment?",
},
],
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// -> "You have a great sense of humor and a kind heart."
}
suggestChatResponseIntents
const res = await _ai.suggestChatResponseIntents({
count: 0,
chat_thread: [
{
name: "User",
role: "user",
content: "I'm feeling down",
},
{
name: "Bot",
role: "bot",
content: "I'm sorry to hear that",
},
],
});
if (res.error) {
console.log(res.error);
} else {
console.log(res.result);
// --> 'Offer support','Ask about the reason for feeling down','Ask about potential solutions',
}
suggestChatResponseMulti
const res = await _ai.suggestChatResponseMulti({
count: 0,
intent: "Give a compliment",
chat_thread: [
{
name: "User",
role: "user",
content: "I'm feeling down",
},
{
name: "Bot",
role: "bot",
content: "I'm sorry to hear that",
},
],
});
if (res.error) {
console.log(error);
} else {
console.log(res.result);
// --> 'You are an amazing person!',' You have a great sense of humor!',' You are very talented!',
}
🌍 Geography
coordinates
- convertCoordsToAddress
- getDistanceBetweenCoords
- getCoordsFromAddress
- getCoordsFromLocation
location
Open-ended, city, state, country, etc.
- detectLocation
- suggestLocation
- suggestLocationMultiple
- getCoordsFromLocation
- getAddressFromLocation
- getTimezoneFromLocation
- getCurrencyFromLocation
- getLanguageFromLocation
- getCountryFromLocation
- getStateFromLocation
- getCityFromLocation
country
- detectCountry
- suggestCountry
- suggestCountryMultiple
- getCurrencyFromCountry
- getCountryCode
- getCountryName
- getCountryFlagEmoji
currency
- getCurrencySymbol
- getCurrencyCode
- getCurrencyName
timezone
- detectTimezone
- getTimezoneName
- getTimezoneOffset
- getTimezoneAbbreviation
- getTimezoneUTCOffset
📣 Language
- detectLanguage
- getLanguageCode
- getLanguageName
- translate
🎨 Colors
- isColor
- getColorName
- getColorFormat
- convertColorFormat
- suggestColor
- suggestColorMultiple
- getBrightness
- getSaturation
- getHue
- setBrightness
- setSaturation
- setHue
- getComplementaryColor
- invertColor
- getContrastingColor
🧮 Numbers
decimal
- toDecimal
- fromDecimal
percentage
- prettyPrintPercentage
- ratioToPercentage // 0-1 to 0-100
- percentageToRatio // 0-100 to 0-1
fraction
- prettyPrintFraction
- ratioToFraction // 0-1 to fraction
- fractionToRatio // fraction to 0-1
number
- isNumber
- isWholeNumber
- isDecimal
- isPercentage
- isFraction
- isNegative
- isPositive
📍 Addresses and contact info
names
- detectName
- suggestName
- suggestNameMultiple
- getFirstName
- getLastName
- getFullName
- getInitials
address
- detectAddress
- suggestAddress
- formatAddress
- getStreetAddress
- getCityFromAddress
- getStateFromAddress
- getZipCodeFromAddress
- getCountryFromAddress
email_address
- isEmailAddress
phone_number
- isPhoneNumber
- getPhoneNumberCountryCode
- getPhoneNumberAreaCode
- getPhoneNumberLocalNumber
- getPhoneNumberExtension
- getPhoneNumberType
💽 Data formats
json
- isJSON
- flattenJSON
- convertJSONToYAML
- convertJSONToXML
- convertJSONToCSV
xml
- isXML
- convertXMLToJSON
- convertXMLToYAML
- convertXMLToCSV
yaml
- isYAML
- convertYAMLToJSON
- convertYAMLToXML
- convertYAMLToCSV
csv
- isCSV
- convertCSVToJSON
- convertCSVToXML
- convertCSVToYAML