From 1730fff4c94afadab5b16de5dfb14ba0d8c301b5 Mon Sep 17 00:00:00 2001 From: Miguel Camba Date: Thu, 12 Jan 2017 09:58:07 +0000 Subject: [PATCH] Add missing isEqual export in ember-utils It's part of the public API: http://emberjs.com/api/#method_isEqual --- app-shims.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app-shims.js b/app-shims.js index db185a2..6d260d7 100644 --- a/app-shims.js +++ b/app-shims.js @@ -192,6 +192,7 @@ 'ember-utils': { 'isBlank': Ember.isBlank, 'isEmpty': Ember.isEmpty, + 'isEqual': Ember.isEqual, 'isNone': Ember.isNone, 'isPresent': Ember.isPresent, 'tryInvoke': Ember.tryInvoke,