The options for humanizing text.
A promise that resolves to the humanized text data.
import { unaimytextHumanize } from 'nb-scraper';
async function humanizeContent() {
const aiText = "The utilization of advanced methodologies facilitates the optimization of operational efficiencies.";
const result = await unaimytextHumanize({
text: aiText,
level: 'enhanced'
});
if (result.status) {
console.log('Original Length:', result.data.originalLength);
console.log('Humanized Text:', result.data.humanizedText);
console.log('Reduction:', result.data.reductionPercentage);
} else {
console.error(result.error);
}
}
humanizeContent();
Humanizes AI-generated text to make it sound more natural using unaimytext.com.