Skip to content

Commit

Permalink
Merge pull request #320 from stefanpenner/fix-318
Browse files Browse the repository at this point in the history
[fixes #318] make sure PROMISE_ID actually works
  • Loading branch information
stefanpenner committed Jan 23, 2018
2 parents 6ee8bdc + 375b0ea commit 1edbf7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/es6-promise/-internal.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
import originalThen from './then';
import originalResolve from './promise/resolve';

export const PROMISE_ID = Math.random().toString(36).substring(16);
export const PROMISE_ID = Math.random().toString(36).substring(2);

function noop() {}

Expand Down

0 comments on commit 1edbf7c

Please sign in to comment.