Skip to content

Commit 0a540b4

Browse files
authored
added semis
1 parent c061c33 commit 0a540b4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/util/identifier.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ exports.makePathsRelative = (context, identifier, cache) => {
2121
const relativePaths = cache.relativePaths || (cache.relativePaths = new Map());
2222

2323
let cachedResult;
24-
let contextCache = relativePaths.get(context)
24+
let contextCache = relativePaths.get(context);
2525
if(typeof contextCache === "undefined") {
2626
relativePaths.set(context, contextCache = new Map());
2727
} else {
28-
cachedResult = contextCache.get(identifier)
28+
cachedResult = contextCache.get(identifier);
2929
}
3030

3131
if(typeof cachedResult !== "undefined") {

0 commit comments

Comments
 (0)