From 151c851c0239c772483da0e7e46d3362d828f390 Mon Sep 17 00:00:00 2001 From: Jason Quense Date: Thu, 21 Jan 2016 10:53:00 -0500 Subject: [PATCH] [fixed] don't conflict with React element typeof --- src/node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.js b/src/node.js index 011aaae..b236238 100644 --- a/src/node.js +++ b/src/node.js @@ -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,