UNPKG

html2canvas

Version:
12 lines (11 loc) 276 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var parseZIndex = exports.parseZIndex = function parseZIndex(zIndex) { var auto = zIndex === 'auto'; return { auto: auto, order: auto ? 0 : parseInt(zIndex, 10) }; };