ember-proxy-util
![Ember Observer Score](http://emberobserver.com/badges/ember-proxy-util.svg)
This addon adds util functions that helps you deal with Ember.ObjectProxy
and Ember.ArrayProxy
.
Installing
ember install ember-proxy-util
Compatibility
- Ember.js v3.20 or above
- Ember CLI v3.20 or above
- Node.js v12 or above
Usage
isProxy
You can use this function to see if an object is a proxy
import { isProxy } from 'ember-proxy-util';
isProxy(object)
withoutProxies
Use this function to get the content of a proxy
import { withoutProxies } from 'ember-proxy-util';
withoutProxies(object)
proxyIsEqual
Use this function to compare two objects that might be a proxy
import { proxyIsEqual } from 'ember-proxy-util';
proxyIsEqual(objectA, objectB)
proxyIndexOf
Use this function to get the index of an item that might be a proxy
import { proxyIndexOf } from 'ember-proxy-util';
proxyIndexOf(array, object)
Legal
Fabriquartz B.V. © 2015
Licensed under the MIT license