UNPKG

shineout

Version:

Shein 前端组件库

17 lines (15 loc) 511 B
"use strict"; exports.__esModule = true; exports.default = flexGapSupport; function flexGapSupport() { var flex = document.createElement('div'); flex.style.display = 'flex'; flex.style.flexDirection = 'column'; flex.style.rowGap = '1px'; flex.appendChild(document.createElement('div')); flex.appendChild(document.createElement('div')); document.body.appendChild(flex); var isSupported = flex.scrollHeight === 1; if (flex.parentNode) flex.parentNode.removeChild(flex); return isSupported; }