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

sheetjs

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sheetjs - npm Package Compare versions

Comparing version

to
1.0.8

10

dist/sheet.js

@@ -7,7 +7,3 @@ 'use strict';

if (!(this instanceof Sheetjs)) { return new Sheetjs(); }
// one of these globally
if (Sheetjs.instance) { return Sheetjs.instance; }
Sheetjs.instance = this;
this._styleSheet = null;

@@ -25,3 +21,3 @@ this._sheet = null;

Sheetjs.prototype = {
// returns a CSSStyleDeclaration object that can be maniuplated with javascript
// returns a CSSStyleDeclaration
createStyle: function(selector) {

@@ -37,5 +33,5 @@ var existing = this.getStyle(selector);

// insert dummy rule to generate a CSSStyleDeclaration object as a byproduct
sheet.insertRule( dummyRule, nextRuleIndex );
sheet.insertRule(dummyRule, nextRuleIndex);
return rules.item( nextRuleIndex ).style;
return rules.item(nextRuleIndex).style;
},

@@ -42,0 +38,0 @@ deleteStyle: function(selector) {

@@ -1,1 +0,1 @@

"use strict";!function(e,t){function n(){if(!(this instanceof n))return new n;if(n.instance)return n.instance;n.instance=this,this._styleSheet=null,this._sheet=null,this._rules=null;var e=this;["createStyle","deleteStyle","getStyle","disable","enable"].forEach(function(t){e[t]=e[t].bind(e)})}n.prototype={createStyle:function(e){var t=this.getStyle(e);if(t)return t;var n=this._getSheet(),s=this._getRules(),l=s.length,i=e+" { }";return n.insertRule(i,l),s.item(l).style},deleteStyle:function(e){var t=this._getSheet(),n=t.removeRule||t.deleteRule,s=this._getRuleIndex(e);return-1===s?!1:n.call(t,s)},getStyle:function(e){var n=this._getRule(e);return n?n.style:t},disable:function(){return this._getSheet().disabled=!0,this},enable:function(){return this._getSheet().disabled=!1,this},_getRuleIndex:function(e){var t=this._getRules(),n=this._getRule(e);return Array.prototype.indexOf.call(t,n)},_getRule:function(e){for(var n=this._getRules(),s=0,l=n.length;l>s;s++)if(n[s].selectorText===e)return n[s];return t},_getSheet:function(){return this._sheet||function(){return this._sheet=this._getStylesheet().sheet}.call(this)},_getRules:function(){return this._rules||function(){var e=this._getSheet();return this._rules=e.cssRules||e.rules}.call(this)},_getStylesheet:function(){return this._styleSheet||function(){var e=document.createElement("style"),t=document.head||document.getElementsByTagName("head")[0];return e.type="text/css",e.setAttribute("id","sheetjs"),t.appendChild(e),this._styleSheet=e}.call(this)}};var s=new n,l={"function":!0,object:!0},i=l[typeof exports]&&exports&&!exports.nodeType&&exports,r=l[typeof module]&&module&&!module.nodeType&&module,u=i&&r&&"object"==typeof global&&global&&global.Object&&global,h=l[typeof self]&&self&&self.Object&&self,o=l[typeof e]&&e&&e.Object&&e,c=r&&r.exports===i&&i,f=u||o!==(this&&this.window)&&o||h||this;"function"==typeof define&&"object"==typeof define.amd&&define.amd?(f.sheetjs=s,define(function(){return s})):i&&r?c?(r.exports=s).sheetjs=s:i.sheetjs=s:f.sheetjs=s}(window);
"use strict";!function(e,t){function s(){if(!(this instanceof s))return new s;this._styleSheet=null,this._sheet=null,this._rules=null;var e=this;["createStyle","deleteStyle","getStyle","disable","enable"].forEach(function(t){e[t]=e[t].bind(e)})}s.prototype={createStyle:function(e){var t=this.getStyle(e);if(t)return t;var s=this._getSheet(),n=this._getRules(),l=n.length,i=e+" { }";return s.insertRule(i,l),n.item(l).style},deleteStyle:function(e){var t=this._getSheet(),s=t.removeRule||t.deleteRule,n=this._getRuleIndex(e);return-1===n?!1:s.call(t,n)},getStyle:function(e){var s=this._getRule(e);return s?s.style:t},disable:function(){return this._getSheet().disabled=!0,this},enable:function(){return this._getSheet().disabled=!1,this},_getRuleIndex:function(e){var t=this._getRules(),s=this._getRule(e);return Array.prototype.indexOf.call(t,s)},_getRule:function(e){for(var s=this._getRules(),n=0,l=s.length;l>n;n++)if(s[n].selectorText===e)return s[n];return t},_getSheet:function(){return this._sheet||function(){return this._sheet=this._getStylesheet().sheet}.call(this)},_getRules:function(){return this._rules||function(){var e=this._getSheet();return this._rules=e.cssRules||e.rules}.call(this)},_getStylesheet:function(){return this._styleSheet||function(){var e=document.createElement("style"),t=document.head||document.getElementsByTagName("head")[0];return e.type="text/css",e.setAttribute("id","sheetjs"),t.appendChild(e),this._styleSheet=e}.call(this)}};var n=new s,l={"function":!0,object:!0},i=l[typeof exports]&&exports&&!exports.nodeType&&exports,r=l[typeof module]&&module&&!module.nodeType&&module,u=i&&r&&"object"==typeof global&&global&&global.Object&&global,o=l[typeof self]&&self&&self.Object&&self,h=l[typeof e]&&e&&e.Object&&e,c=r&&r.exports===i&&i,f=u||h!==(this&&this.window)&&h||o||this;"function"==typeof define&&"object"==typeof define.amd&&define.amd?(f.sheetjs=n,define(function(){return n})):i&&r?c?(r.exports=n).sheetjs=n:i.sheetjs=n:f.sheetjs=n}(window);

@@ -36,3 +36,3 @@ 'use strict';

var bundlers = bundleConfigs.map(function (bundleConfig) {
var bundlers = bundleConfigs.map(function(bundleConfig) {
var useBrowserify = bundleConfig.browserify;

@@ -45,3 +45,3 @@ var b = browserify(_.assign({}, watchify.args, {

return {
watch: function () {
watch: function() {
return useBrowserify ?

@@ -55,3 +55,3 @@ watchifyBundler

},
bundle: function () {
bundle: function() {
return (

@@ -58,0 +58,0 @@ useBrowserify ?

{
"name": "sheetjs",
"description": "Easily create and manipulate CSSStyleDeclarations with javascript.",
"version": "1.0.7",
"version": "1.0.8",
"keywords": [

@@ -6,0 +6,0 @@ "CSSStyleDeclaration",

@@ -7,7 +7,3 @@ 'use strict';

if (!(this instanceof Sheetjs)) { return new Sheetjs(); }
// one of these globally
if (Sheetjs.instance) { return Sheetjs.instance; }
Sheetjs.instance = this;
this._styleSheet = null;

@@ -25,3 +21,3 @@ this._sheet = null;

Sheetjs.prototype = {
// returns a CSSStyleDeclaration object that can be maniuplated with javascript
// returns a CSSStyleDeclaration
createStyle: function(selector) {

@@ -37,5 +33,5 @@ var existing = this.getStyle(selector);

// insert dummy rule to generate a CSSStyleDeclaration object as a byproduct
sheet.insertRule( dummyRule, nextRuleIndex );
sheet.insertRule(dummyRule, nextRuleIndex);
return rules.item( nextRuleIndex ).style;
return rules.item(nextRuleIndex).style;
},

@@ -42,0 +38,0 @@ deleteStyle: function(selector) {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet