summaryrefslogblamecommitdiff
path: root/node_modules/tailwindcss/lib/util/tap.js
blob: 8acdbd62c43a470c2e5bdbe6cf81602c01a52e55 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                              
"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;
}