Capítulo 140 de 411
pipe() chains multiple functions together, passing each one's return value into the next, avoiding nested/wrapped function calls.
// instead of func3(func2(func1(input)))
let transform = gsap.utils.pipe(func1, func2, func3);
transform(input);
clamp() and snap() into a single reusable sanitizer function.pipe().