0.1.0 • Published 4 years ago

ember-proxy-util v0.1.0

Weekly downloads
27
License
MIT
Repository
github
Last release
4 years ago

ember-proxy-util

npm version Build Status Ember Observer Score

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) // => true or false

withoutProxies

Use this function to get the content of a proxy

import { withoutProxies } from 'ember-proxy-util';

withoutProxies(object) // => content of proxy

proxyIsEqual

Use this function to compare two objects that might be a proxy

import { proxyIsEqual } from 'ember-proxy-util';

proxyIsEqual(objectA, objectB) // => true or false

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) // => The index of where object is in array or -1

Legal

Fabriquartz B.V. © 2015

Licensed under the MIT license

0.1.0

4 years ago

0.0.16

6 years ago

0.0.15

6 years ago

0.0.14

7 years ago

0.0.13

7 years ago

0.0.12

7 years ago

0.0.11

7 years ago

0.0.10

7 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

9 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago