Socket
Socket
Sign inDemoInstall

computed-styles

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

computed-styles

Get the computed styles of a DOM element in a cross browser consistent manner


Version published
Weekly downloads
2.2K
decreased by-5.18%
Maintainers
1
Weekly downloads
 
Created
Source

computed-style

NPM version Build Status Downloads

Get the computed styles of a DOM element in a cross browser consistent manner

Install

npm install computed-styles

Usage

Get computed styles

import computedStyles from 'computed-styles';

computedStyles(document.querySelector('#node')) // returns computed styles as an object

Convert computed styles to inline styles

import computedStyles from 'computed-styles';

var node = document.querySelector('#node');
computedStyles(node, node.styles);

Copy computed styles to another element

import computedStyles from 'computed-styles';

var source = document.querySelector('#source');
var target = document.querySelector('#target');
computedStyles(source, target.styles);

See API

License

MIT © J. Harshbarger

Keywords

FAQs

Package last updated on 28 Oct 2015

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