rss2/frontend/node_modules/tailwindcss/src/util/tap.js

4 lines
72 B
JavaScript

export function tap(value, mutator) {
mutator(value)
return value
}