Browse Source

[fix] missing declarations

master
Muthu Kumar 6 years ago
committed by GitHub
parent
commit
c32bc4525d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      index.js

6
index.js

@ -91,10 +91,10 @@ const infiniteList = {
};
// Clear cache manually.
clearCache = () => (cache = [], undefined);
const clearCache = () => (cache = [], undefined);
top = function () { return this.get(0) };
end = function () { return this.get(Infinity) };
const top = function () { return this.get(0) };
const end = function () { return this.get(Infinity) };
const returns = {
get,
take,

Loading…
Cancel
Save