Skip to content

Commit

Permalink
Use "__reifyEntry" instead of just "__reify" for Entry Symbol.
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamn committed May 26, 2017
1 parent 2ca860a commit e1c431f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var NAN = {};
var UNDEFINED = {};

var useSymbol = typeof Symbol === "function";
var entryStrKey = "__reify";
var entryStrKey = "__reifyEntry";
var entrySymKey = useSymbol ? Symbol.for(entryStrKey) : null;
var entryKey = useSymbol ? entrySymKey : entryStrKey;
var hasOwn = Object.prototype.hasOwnProperty;
Expand Down

0 comments on commit e1c431f

Please sign in to comment.