📄 toColorValue.js
/home/palash/git/site/node_modules/tailwindcss/lib/util/toColorValue.js
Language: js • Lines: 13
"use strict";
Object.defineProperty(exports, "__esModule", {
    value: true
});
Object.defineProperty(exports, "default", {
    enumerable: true,
    get: function() {
        return toColorValue;
    }
});
function toColorValue(maybeFunction) {
    return typeof maybeFunction === "function" ? maybeFunction({}) : maybeFunction;
}