Files
Housekeeping-web-admin/node_modules/tailwindcss/lib/util/tap.js
T
2026-06-24 09:48:54 +02:00

15 lines
266 B
JavaScript

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