Sha256: 5e4b565969bc95f8e4289d1e94fc84f84797c7dafb0909eb9b21be355c2f3914
Contents?: true
Size: 416 Bytes
Versions: 24
Compression:
Stored size: 416 Bytes
Contents
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = _default; /** * Get the index of a media query's params * * @param {AtRule} atRule * @return {int} The index */ function _default(atRule) { // Initial 1 is for the `@` var index = 1 + atRule.name.length; if (atRule.raw("afterName")) { index += atRule.raw("afterName").length; } return index; }
Version data entries
24 entries across 24 versions & 1 rubygems