Skip to content

Commit

Permalink
[fixed] don't conflict with React element typeof
Browse files Browse the repository at this point in the history
  • Loading branch information
jquense committed Jan 21, 2016
1 parent 9215d02 commit 151c851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
, isTextElement, isReactInstance
, isDOMComponent, isCompositeComponent, getAllPropertyNames} from './utils';

export const NODE_TYPE = (typeof Symbol === 'function' && Symbol.for && Symbol.for('bill.node')) || 0xeac7;
export const NODE_TYPE = (typeof Symbol === 'function' && Symbol.for && Symbol.for('bill.node')) || 0xadc3;

export const NODE_TYPES = {
COMPOSITE: 1,
Expand Down

0 comments on commit 151c851

Please sign in to comment.