UNPKG

@pubby.club/sdk

Version:
12 lines (11 loc) 301 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.tap = void 0; var transform_1 = require("../lib/transform"); function tap(tapFn) { return new transform_1.Transform(function (data, cb) { tapFn(data); cb(null, data); }); } exports.tap = tap;