Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /usr/share/nodejs/cssom/lib/ drwxr-xr-x |
Viewing file: Select action/file-type: //.CommonJS var CSSOM = { CSSRule: require("./CSSRule").CSSRule, }; ///CommonJS /** * @constructor * @see https://drafts.csswg.org/css-conditional-3/#the-csssupportsrule-interface */ CSSOM.CSSSupportsRule = function CSSSupportsRule() { CSSOM.CSSRule.call(this); this.conditionText = ''; this.cssRules = []; }; CSSOM.CSSSupportsRule.prototype = new CSSOM.CSSRule(); CSSOM.CSSSupportsRule.prototype.constructor = CSSOM.CSSSupportsRule; CSSOM.CSSSupportsRule.prototype.type = 12; Object.defineProperty(CSSOM.CSSSupportsRule.prototype, "cssText", { get: function() { var cssTexts = []; for (var i = 0, length = this.cssRules.length; i < length; i++) { cssTexts.push(this.cssRules[i].cssText); } return "@supports " + this.conditionText + " {" + cssTexts.join("") + "}"; } }); //.CommonJS exports.CSSSupportsRule = CSSOM.CSSSupportsRule; ///CommonJS |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0041 ]-- |