Dashboard sipadu mbip
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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"];