diff options
| author | Dhravya Shah <[email protected]> | 2025-01-20 17:49:19 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-01-20 17:50:45 -0700 |
| commit | 47904011de646b92b1f3774f9a30bcfa118c5dc4 (patch) | |
| tree | ab0e5e79c4ad5465ceeedc9b4015be2d9d01be45 /patches/[email protected] | |
| parent | Merge pull request #295 from supermemoryai/extension/duplicate-save-fix (diff) | |
| download | supermemory-47904011de646b92b1f3774f9a30bcfa118c5dc4.tar.xz supermemory-47904011de646b92b1f3774f9a30bcfa118c5dc4.zip | |
Supermemory v2 Release 🚀
Diffstat (limited to 'patches/[email protected]')
| -rw-r--r-- | patches/[email protected] | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/patches/[email protected] b/patches/[email protected] new file mode 100644 index 00000000..176605e5 --- /dev/null +++ b/patches/[email protected] @@ -0,0 +1,11 @@ +diff --git a/index.js b/index.js +index 14ddddbe702a18480d11ab927b58f48d19b9c1cb..cbb9e93a3256f2d41f9c488290a2d4c123f786c6 100644 +--- a/index.js ++++ b/index.js +@@ -1,5 +1,5 @@ + var now = require('performance-now') +- , root = typeof window === 'undefined' ? global : window ++ , root = typeof window === 'undefined' ? (typeof global !== 'undefined' ? global : self) : window + , vendors = ['moz', 'webkit'] + , suffix = 'AnimationFrame' + , raf = root['request' + suffix] |