Fix opaque ref detection.

This commit is contained in:
Julien Fontanet 2015-12-18 11:23:24 +01:00
parent cbcc4dd21d
commit 069c430346

View File

@ -165,7 +165,7 @@ let getNotConnectedPromise = function () {
// ------------------------------------------------------------------- // -------------------------------------------------------------------
const OPAQUE_REF_PREFIX = /^OpaqueRef:/ const OPAQUE_REF_PREFIX = 'OpaqueRef:'
const isOpaqueRef = value => isString(value) && startsWith(value, OPAQUE_REF_PREFIX) const isOpaqueRef = value => isString(value) && startsWith(value, OPAQUE_REF_PREFIX)
// ------------------------------------------------------------------- // -------------------------------------------------------------------