mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:39:29 +08:00
12 lines
235 B
Text
12 lines
235 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "tap", {
|
|
enumerable: true,
|
|
get: ()=>tap
|
|
});
|
|
function tap(value, mutator) {
|
|
mutator(value);
|
|
return value;
|
|
}
|