HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/quadcode/one-time-popup/node_modules/sass-embedded/dist/lib/src/value/utils.js
"use strict";
// Copyright 2021 Google Inc. Use of this source code is governed by an
// MIT-style license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
Object.defineProperty(exports, "__esModule", { value: true });
exports.precision = void 0;
exports.fuzzyEquals = fuzzyEquals;
exports.fuzzyHashCode = fuzzyHashCode;
exports.fuzzyLessThan = fuzzyLessThan;
exports.fuzzyLessThanOrEquals = fuzzyLessThanOrEquals;
exports.fuzzyGreaterThan = fuzzyGreaterThan;
exports.fuzzyGreaterThanOrEquals = fuzzyGreaterThanOrEquals;
exports.fuzzyIsInt = fuzzyIsInt;
exports.fuzzyAsInt = fuzzyAsInt;
exports.fuzzyRound = fuzzyRound;
exports.fuzzyInRange = fuzzyInRange;
exports.fuzzyAssertInRange = fuzzyAssertInRange;
exports.positiveMod = positiveMod;
const immutable_1 = require("immutable");
const utils_1 = require("../utils");
/** The precision of Sass numbers. */
exports.precision = 10;
// The max distance two Sass numbers can be from each another before they're
// considered different.
//
// Uses ** instead of Math.pow() for constant folding.
const epsilon = 10 ** (-exports.precision - 1);
/** Whether `num1` and `num2` are equal within `epsilon`. */
function fuzzyEquals(num1, num2) {
    return Math.abs(num1 - num2) < epsilon;
}
/**
 * Returns a hash code for `num`.
 *
 * Two numbers that `fuzzyEquals` each other must have the same hash code.
 */
function fuzzyHashCode(num) {
    return !isFinite(num) || isNaN(num)
        ? (0, immutable_1.hash)(num)
        : (0, immutable_1.hash)(Math.round(num / epsilon));
}
/** Whether `num1` < `num2`, within `epsilon`. */
function fuzzyLessThan(num1, num2) {
    return num1 < num2 && !fuzzyEquals(num1, num2);
}
/** Whether `num1` <= `num2`, within `epsilon`. */
function fuzzyLessThanOrEquals(num1, num2) {
    return num1 < num2 || fuzzyEquals(num1, num2);
}
/** Whether `num1` > `num2`, within `epsilon`. */
function fuzzyGreaterThan(num1, num2) {
    return num1 > num2 && !fuzzyEquals(num1, num2);
}
/** Whether `num1` >= `num2`, within `epsilon`. */
function fuzzyGreaterThanOrEquals(num1, num2) {
    return num1 > num2 || fuzzyEquals(num1, num2);
}
/** Whether `num` `fuzzyEquals` an integer. */
function fuzzyIsInt(num) {
    return !isFinite(num) || isNaN(num)
        ? false
        : // Check against 0.5 rather than 0.0 so that we catch numbers that are
            // both very slightly above an integer, and very slightly below.
            fuzzyEquals(Math.abs(num - 0.5) % 1, 0.5);
}
/**
 * If `num` `fuzzyIsInt`, returns it as an integer. Otherwise, returns `null`.
 */
function fuzzyAsInt(num) {
    return fuzzyIsInt(num) ? Math.round(num) : null;
}
/**
 * Rounds `num` to the nearest integer.
 *
 * If `num` `fuzzyEquals` `x.5`, rounds away from zero.
 */
function fuzzyRound(num) {
    if (num > 0) {
        return fuzzyLessThan(num % 1, 0.5) ? Math.floor(num) : Math.ceil(num);
    }
    else {
        return fuzzyGreaterThan(num % 1, -0.5) ? Math.ceil(num) : Math.floor(num);
    }
}
/**
 * Returns `num` if it's within `min` and `max`, or `null` if it's not.
 *
 * If `num` `fuzzyEquals` `min` or `max`, it gets clamped to that value.
 */
function fuzzyInRange(num, min, max) {
    if (fuzzyEquals(num, min))
        return min;
    if (fuzzyEquals(num, max))
        return max;
    if (num > min && num < max)
        return num;
    return null;
}
/**
 * Returns `num` if it's within `min` and `max`. Otherwise, throws an error.
 *
 * If `num` `fuzzyEquals` `min` or `max`, it gets clamped to that value.
 *
 * If `name` is provided, it is used as the parameter name for error reporting.
 */
function fuzzyAssertInRange(num, min, max, name) {
    if (fuzzyEquals(num, min))
        return min;
    if (fuzzyEquals(num, max))
        return max;
    if (num > min && num < max)
        return num;
    throw (0, utils_1.valueError)(`${num} must be between ${min} and ${max}`, name);
}
/** Returns `dividend % modulus`, but always in the range `[0, modulus)`. */
function positiveMod(dividend, modulus) {
    const result = dividend % modulus;
    return result < 0 ? result + modulus : result;
}
//# sourceMappingURL=utils.js.map