Skip to content

Commit

Permalink
Merge pull request #16211 from bekzod/remove-cache
Browse files Browse the repository at this point in the history
remove unused `caches` export
  • Loading branch information
mmun authored Feb 2, 2018
2 parents 949df8c + 0c81a32 commit 596951d
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/ember-metal/lib/path_cache.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ import Cache from './cache';

const firstDotIndexCache = new Cache(1000, key => key.indexOf('.'));

export const caches = {
firstDotIndexCache
};

export function isPath(path) {
return firstDotIndexCache.get(path) !== -1;
}

0 comments on commit 596951d

Please sign in to comment.