UNPKG

aa-daily-reflections

Version:

A lightweight Node.js library to fetch Daily Reflections from Alcoholics Anonymous (AA)

17 lines (16 loc) 461 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.cleanText = cleanText; function cleanText(text) { return text .replace(/<[^>]+>/g, '') .replace(/&nbsp;/g, ' ') .replace(/&amp;/g, '&') .replace(/&lt;/g, '<') .replace(/&gt;/g, '>') .replace(/&quot;/g, '"') .replace(/&#039;/g, "'") .replace(/\s+/g, ' ') .replace(/\n\s*\n/g, '\n') .trim(); }