UNPKG

@lagrange/animator

Version:

This library helps making parallax animations on scroll. It is built with performance in mind, as it doesn't need to relayout or paint to operate.

6 lines (4 loc) 169 B
import precision from './precision'; export default function valueOrDefault(value, defaultValue = 0) { return value !== undefined ? precision(value) : defaultValue; }