New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ember-proxy-util

Package Overview
Dependencies
Maintainers
5
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-proxy-util

The default blueprint for ember-cli addons.

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-88.89%
Maintainers
5
Weekly downloads
 
Created
Source

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

Fabriquartz B.V. © 2015

Licensed under the MIT license

Keywords

FAQs

Package last updated on 28 Oct 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc