UNPKG

scrollscene

Version:

ScrollScene is an extra layer on top of ScrollMagic as well as using IntersectionObserver to achieve similar effects.

9 lines (8 loc) 234 B
/** * stringContains * @returns boolean * @example * stringContains('yoyoyo', 'yo') => true * stringContains('Hello', 'World') => false */ export declare const stringContains: (doesThis: string, containThis: string) => boolean;