UNPKG

react-teffex

Version:

Text Effects: Stateful React text effects for amazing websites

9 lines (8 loc) 217 B
export function randomise(max) { return Math.floor(Math.random() * max); } export function setCharAt(str, index, chr) { var array = str.split(""); array.splice(index, 1, chr); return array.join(""); }