refactor(core): remove animation utilities from DomAdapters (#32278)
PR Close #32278
This commit is contained in:
@ -179,3 +179,7 @@ export function setCookie(name: string, value: string) {
|
||||
// not clear other cookies.
|
||||
document.cookie = encodeURIComponent(name) + '=' + encodeURIComponent(value);
|
||||
}
|
||||
|
||||
export function supportsWebAnimation(): boolean {
|
||||
return typeof(<any>Element).prototype['animate'] === 'function';
|
||||
}
|
||||
|
Reference in New Issue
Block a user