UNPKG

animated

Version:

Declarative Animations Library for React and React Native

26 lines (13 loc) 266 B
'use strict'; function SetPolyfill(){ this._cache=[]; } SetPolyfill.prototype.add=function(e){ if(this._cache.indexOf(e)===-1){ this._cache.push(e); } }; SetPolyfill.prototype.forEach=function(cb){ this._cache.forEach(cb); }; module.exports=SetPolyfill;