www_hero/node_modules/tailwindcss/lib/util/tap.js
sasha-astiadi 324d5960af hero_web
2024-05-03 06:39:20 +02:00

10 lines
171 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.tap = tap;
function tap(value, mutator) {
mutator(value);
return value;
}