UNPKG

cevichify

Version:

Turns all words in a string to 'ceviche'

11 lines (8 loc) 199 B
function cevichify(text) { if (!text || typeof text !== "string") return null; return text .split(" ") .map((word) => "ceviche") .join(" "); } module.exports = cevichify;