UNPKG

react-native-pull-up-down-refresh

Version:

A smart pull-down-refresh and pull-up-loadmore react-native listview, for ios, written in pure JS, for android, written in JS and Java.

12 lines (6 loc) 144 B
export const easeOutCirc = (x, t, b, c, d) => { return c * Math.sqrt(1 - (t = t/d - 1) * t) + b; } export default { easeOutCirc, }