/
opt
/
canhelp
/
node_modules
/
tailwindcss
/
lib
/
util
/
/opt/canhelp/node_modules/tailwindcss/lib/util
mkdir
upload
Name
Size
Mode
Actions
applyImportantSelector.js
1381
0644
edit
dl
rm
bigSign.js
289
0644
edit
dl
rm
buildMediaQuery.js
780
0644
edit
dl
rm
cloneDeep.js
544
0644
edit
dl
rm
cloneNodes.js
1915
0644
edit
dl
rm
color.js
3912
0644
edit
dl
rm
colorNames.js
9243
0644
edit
dl
rm
configurePlugins.js
685
0644
edit
dl
rm
createPlugin.js
961
0644
edit
dl
rm
createUtilityPlugin.js
1930
0644
edit
dl
rm
dataTypes.js
9034
0644
edit
dl
rm
defaults.js
1036
0644
edit
dl
rm
escapeClassName.js
958
0644
edit
dl
rm
escapeCommas.js
292
0644
edit
dl
rm
flattenColorPalette.js
663
0644
edit
dl
rm
formatVariantSelector.js
11612
0644
edit
dl
rm
getAllConfigs.js
1713
0644
edit
dl
rm
hashConfig.js
518
0644
edit
dl
rm
isKeyframeRule.js
340
0644
edit
dl
rm
isPlainObject.js
470
0644
edit
dl
rm
isSyntacticallyValidPropertyValue.js
2072
0644
edit
dl
rm
log.js
1606
0644
edit
dl
rm
math-operators.js
5214
0644
edit
dl
rm
nameClass.js
1316
0644
edit
dl
rm
negateValue.js
1053
0644
edit
dl
rm
normalizeConfig.js
14979
0644
edit
dl
rm
normalizeScreens.js
5602
0644
edit
dl
rm
parseAnimationValue.js
2912
0644
edit
dl
rm
parseBoxShadowValue.js
2626
0644
edit
dl
rm
parseDependency.js
1182
0644
edit
dl
rm
parseGlob.js
862
0644
edit
dl
rm
parseObjectStyles.js
1025
0644
edit
dl
rm
pluginUtils.js
11161
0644
edit
dl
rm
prefixSelector.js
1408
0644
edit
dl
rm
pseudoElements.js
6985
0644
edit
dl
rm
removeAlphaVariables.js
1073
0644
edit
dl
rm
resolveConfig.js
9347
0644
edit
dl
rm
resolveConfigPath.js
2289
0644
edit
dl
rm
responsive.js
672
0644
edit
dl
rm
splitAtTopLevelOnly.js
1805
0644
edit
dl
rm
tap.js
266
0644
edit
dl
rm
toColorValue.js
333
0644
edit
dl
rm
toPath.js
951
0644
edit
dl
rm
transformThemeValue.js
2277
0644
edit
dl
rm
validateConfig.js
1359
0644
edit
dl
rm
validateFormalSyntax.js
998
0644
edit
dl
rm
withAlphaVariable.js
2056
0644
edit
dl
rm
Edit:
/opt/canhelp/node_modules/tailwindcss/lib/util/normalizeScreens.js
(5602B)
/** * @typedef {object} ScreenValue * @property {number|undefined} min * @property {number|undefined} max * @property {string|undefined} raw */ /** * @typedef {object} Screen * @property {string} name * @property {boolean} not * @property {ScreenValue[]} values */ /** * A function that normalizes the various forms that the screens object can be * provided in. * * Input(s): * - ['100px', '200px'] // Raw strings * - { sm: '100px', md: '200px' } // Object with string values * - { sm: { min: '100px' }, md: { max: '100px' } } // Object with object values * - { sm: [{ min: '100px' }, { max: '200px' }] } // Object with object array (multiple values) * * Output(s): * - [{ name: 'sm', values: [{ min: '100px', max: '200px' }] }] // List of objects, that contains multiple values * * @returns {Screen[]} */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { normalizeScreens: function() { return normalizeScreens; }, isScreenSortable: function() { return isScreenSortable; }, compareScreens: function() { return compareScreens; }, toScreen: function() { return toScreen; } }); function normalizeScreens(screens, root = true) { if (Array.isArray(screens)) { return screens.map((screen)=>{ if (root && Array.isArray(screen)) { throw new Error("The tuple syntax is not supported for `screens`."); } if (typeof screen === "string") { return { name: screen.toString(), not: false, values: [ { min: screen, max: undefined } ] }; } let [name, options] = screen; name = name.toString(); if (typeof options === "string") { return { name, not: false, values: [ { min: options, max: undefined } ] }; } if (Array.isArray(options)) { return { name, not: false, values: options.map((option)=>resolveValue(option)) }; } return { name, not: false, values: [ resolveValue(options) ] }; }); } return normalizeScreens(Object.entries(screens !== null && screens !== void 0 ? screens : {}), false); } function isScreenSortable(screen) { if (screen.values.length !== 1) { return { result: false, reason: "multiple-values" }; } else if (screen.values[0].raw !== undefined) { return { result: false, reason: "raw-values" }; } else if (screen.values[0].min !== undefined && screen.values[0].max !== undefined) { return { result: false, reason: "min-and-max" }; } return { result: true, reason: null }; } function compareScreens(type, a, z) { let aScreen = toScreen(a, type); let zScreen = toScreen(z, type); let aSorting = isScreenSortable(aScreen); let bSorting = isScreenSortable(zScreen); // These cases should never happen and indicate a bug in Tailwind CSS itself if (aSorting.reason === "multiple-values" || bSorting.reason === "multiple-values") { throw new Error("Attempted to sort a screen with multiple values. This should never happen. Please open a bug report."); } else if (aSorting.reason === "raw-values" || bSorting.reason === "raw-values") { throw new Error("Attempted to sort a screen with raw values. This should never happen. Please open a bug report."); } else if (aSorting.reason === "min-and-max" || bSorting.reason === "min-and-max") { throw new Error("Attempted to sort a screen with both min and max values. This should never happen. Please open a bug report."); } // Let the sorting begin let { min: aMin , max: aMax } = aScreen.values[0]; let { min: zMin , max: zMax } = zScreen.values[0]; // Negating screens flip their behavior. Basically `not min-width` is `max-width` if (a.not) [aMin, aMax] = [ aMax, aMin ]; if (z.not) [zMin, zMax] = [ zMax, zMin ]; aMin = aMin === undefined ? aMin : parseFloat(aMin); aMax = aMax === undefined ? aMax : parseFloat(aMax); zMin = zMin === undefined ? zMin : parseFloat(zMin); zMax = zMax === undefined ? zMax : parseFloat(zMax); let [aValue, zValue] = type === "min" ? [ aMin, zMin ] : [ zMax, aMax ]; return aValue - zValue; } function toScreen(value, type) { if (typeof value === "object") { return value; } return { name: "arbitrary-screen", values: [ { [type]: value } ] }; } function resolveValue({ "min-width": _minWidth , min =_minWidth , max , raw } = {}) { return { min, max, raw }; }
Save
cmd:
run