Dashboard sipadu mbip
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

removeStyle.js 255B

12345678910
  1. "use strict";
  2. exports.__esModule = true;
  3. exports.default = removeStyle;
  4. function removeStyle(node, key) {
  5. return 'removeProperty' in node.style ? node.style.removeProperty(key) : node.style.removeAttribute(key);
  6. }
  7. module.exports = exports["default"];