www_hero/node_modules/tailwindcss/lib/util/tap.js

10 lines
171 B
JavaScript
Raw Normal View History

2024-05-03 04:39:20 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.tap = tap;
function tap(value, mutator) {
mutator(value);
return value;
}