async get()

in src/limitus.ts [32:39]


    async get(key, callback) {
      try {
        const res = await internalCache.get(transformKey(key));
        callback(null, res && (<any>res).item);
      } catch (e) {
        callback(e);
      }
    },