Skip to content

Commit

Permalink
Reduce entropy reduction, concat rather then multiply
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanpenner committed Jun 12, 2016
1 parent 1d3d240 commit 62b235f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/container/lib/registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@ import { intern } from 'ember-metal/utils';
import dict from 'ember-metal/dictionary';

const privateNames = dict(null);
const privateSuffix = Math.floor(Math.random() * new Date()) + '';
const privateSuffix = `${Math.random()}${Date.now()}`;

export function privatize([fullName]) {
let name = privateNames[fullName];
Expand Down

0 comments on commit 62b235f

Please sign in to comment.